Re: [R] Getting names of variables without quotes

2008-10-21 Thread Amarjit Singh Sethi
] Getting names of variables without quotes To: [EMAIL PROTECTED] Date: Sunday, 19 October, 2008, 9:29 PM Amarjit Singh Sethi set_alt at yahoo.co.in writes: (Please do not use tabs when sending a data sample, these must be manually edited) V1,V2,V3 15,10,4 6,4,7 10,5,2 8,6,6

Re: [R] Getting names of variables without quotes

2008-10-21 Thread jim holtman
, preferably in separate output files for each iteration. regards ajss --- On Sun, 19/10/08, Dieter Menne [EMAIL PROTECTED] wrote: From: Dieter Menne [EMAIL PROTECTED] Subject: Re: [R] Getting names of variables without quotes To: [EMAIL PROTECTED] Date: Sunday, 19 October, 2008, 9:29 PM

Re: [R] Getting names of variables without quotes

2008-10-19 Thread Jorge Ivan Velez
, Jorge Ivan Velez [EMAIL PROTECTED]* wrote: From: Jorge Ivan Velez [EMAIL PROTECTED] Subject: Re: [R] Getting names of variables without quotes To: [EMAIL PROTECTED] Cc: r-help@r-project.org Date: Sunday, 19 October, 2008, 1:04 AM Dear AJSS, Perhaps ?noquote might be useful for you. Here

Re: [R] Getting names of variables without quotes

2008-10-19 Thread Amarjit Singh Sethi
able to grasp intricacies of this code). Will you kindly help me in getting rid of the problem. Regards ajss --- On Sun, 19/10/08, Jorge Ivan Velez [EMAIL PROTECTED] wrote: From: Jorge Ivan Velez [EMAIL PROTECTED] Subject: Re: [R] Getting names of variables without quotes To: [EMAIL PROTECTED

Re: [R] Getting names of variables without quotes

2008-10-19 Thread Jorge Ivan Velez
in getting rid of the problem. Regards ajss --- On Sun, 19/10/08, Jorge Ivan Velez [EMAIL PROTECTED] wrote: From: Jorge Ivan Velez [EMAIL PROTECTED] Subject: Re: [R] Getting names of variables without quotes To: [EMAIL PROTECTED] Cc: Dieter Menne [EMAIL PROTECTED], R mailing list r-help@r

[R] Getting names of variables without quotes

2008-10-18 Thread Amarjit Singh Sethi
  Dear R-helpers, hello I am seeking your help in somehow getting names of variables without quotes ( ). Let us say, we have a table with 3 variables V1, V2 and V3. After the table is read, I get names of the variables (thro' the following code) as under quotes (like V1 rather than the

Re: [R] Getting names of variables without quotes

2008-10-18 Thread Dieter Menne
Amarjit Singh Sethi set_alt at yahoo.co.in writes: I am seeking your help in somehow getting names of variables without quotes ( ). Let us say, we have a table with 3 variables V1, V2 and V3. After the table is read, I get names of the variables (thro' the following code) as under quotes

Re: [R] Getting names of variables without quotes

2008-10-18 Thread Jorge Ivan Velez
Dear AJSS, Perhaps ?noquote might be useful for you. Here is an example: x=c('V1','V2','V3','V4') x [1] V1 V2 V3 V4 noquote(x) [1] V1 V2 V3 V4 HTH, Jorge On Sat, Oct 18, 2008 at 3:04 PM, Amarjit Singh Sethi [EMAIL PROTECTED]wrote: Â Dear R-helpers, hello I am seeking your help in

Re: [R] Getting names of variables without quotes

2008-10-18 Thread Charles C. Berry
On Sun, 19 Oct 2008, Amarjit Singh Sethi wrote: ?? Dear R-helpers, hello I am seeking your help in somehow??getting names of variables without quotes ( ). Let us say,??we have a table with 3 variables V1, V2 and V3. After the table is read, I get names of the variables??(thro' the following