Re: [R] plotting from dataframes

2013-01-18 Thread condor
So by hand the command would be par(mfrow=c(1,2)) plot(frames$'1'hour1) plot(frames$'2'hour1) But in my case there are far more than 2 days, so I want to use a loop. Suppose I have 10 plots par(mfrow=c(2,5)) for(i in 1:10){ plot( /what should be put here??/) } -- View this message in context:

[R] plotting from dataframes

2013-01-17 Thread condor
thanks to your guys help I am closer to solving my problem but I have some small problem. So let's say I start with >data number day hour 1 17 10 2 17 11 3 17 6 4 18 4 5 18 10 6 19 8 7 19 8 I want to

Re: [R] putting data.frame values in new dataframes

2013-01-14 Thread condor
thank you very much, I have a smaller question: If I give the first dataframe a name, say data1. How can I read it without pasting the dataframe -- View this message in context: http://r.789695.n4.nabble.com/putting-data-frame-values-in-new-dataframes-tp4655474p4655482.html Sent from the R hel

[R] putting data.frame values in new dataframes

2013-01-14 Thread condor
I have a very dataset which I want to put in new dataframes according to date. Example: Suppose I have number day month hours 1 1 1410 2 2 2 141012 3 3 141018 4 4 1510 3 5 5 151014 6 6 161018 7 7 16