[R] paste data

2008-06-18 Thread Sybille Wendel
Hello, I need a command. I have a lot of data in different dataframes(auto.0a, auto.0b, auto.0c, auto.5Na,...), that has similar names. I could print the names all at once wih a loop with the command paste(), see below: plot-c(0a,0b,0c,5Na,5Nb,5Nc,PKa,PKb,PKc,5NPKa,5NPKb,

Re: [R] paste data

2008-06-18 Thread Søren Højsgaard
-Oprindelig meddelelse- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne af Sybille Wendel Sendt: 18. juni 2008 10:36 Til: r-help@r-project.org Emne: [R] paste data Hello, I need a command. I have a lot of data in different dataframes(auto.0a, auto.0b, auto.0c, auto.5Na,...), that has similar

Re: [R] paste data

2008-06-18 Thread Hans-Joerg Bibiko
On 18 Jun 2008, at 10:36, Sybille Wendel wrote: I need a command. I have a lot of data in different dataframes(auto.0a, auto.0b, auto. 0c, auto.5Na,...), that has similar names. I could print the names all at once wih a loop with the command paste(), see below: plot-

Re: [R] paste data

2008-06-18 Thread Peter Dalgaard
Sybille Wendel wrote: Hello, I need a command. I have a lot of data in different dataframes(auto.0a, auto.0b, auto.0c, auto.5Na,...), that has similar names. I could print the names all at once wih a loop with the command paste(), see below:

Re: [R] paste data

2008-06-18 Thread Ray Brownrigg
get() is your friend. Try: for (x in 1:length(plot)) { thisdf - paste(auto., plot[x], sep=) plot(thisdf[, 1], thisdf[, 2], col=...) } HTH, Ray Brownrigg Sybille Wendel wrote: Hello, I need a command. I have a lot of data in different dataframes(auto.0a, auto.0b, auto.0c,

Re: [R] paste data

2008-06-18 Thread Ido M. Tamir
I want to do very similar things with all the dataframes and their structure is also the same. Is there a way to write a loop? (so that I don't have to write the same 18 times) I tried things like that: for (x in 1:length(plot)) { plot(paste(auto.,plot[x],sep=)[,1],