Displaying 2 results from an estimated 2 matches for "datg".
Did you mean:
data
2012 Jun 01
1
Fit lines in intxplot
Dear R help,
I tried to add linear fit lines in intxplot by adding "index.cond = function(x,y) coef(lm(y ~ x))[1]" inside the intxplot().? It didn't help.? I would appreciate any help.
My dataset and codes are pasted below.
Thanks,
A.K.
datGreen<- read.table(text="
Time,??? DarkSt,??? LightSt
0,??? 0,??? 1
1,??? 0.03,??? 0.82
2,??? 0.06,??? 0.91
3,??? 0.12,??? 0.64
4,??? 0.12,??? 0.73
5,??? 0.12,??? 0.64
6,??? 0.09,??? 0.64
7,??? 0.09,??? 0.64
8,??? 0.09,??? 0.64
9,??? 0.09,??? 0.64
10,??? 0.12,??? 0.64
11,??? 0.09,??? 0.64
12,...
2008 May 02
4
to extract particular date/data
Hi R-expert,
If I have this daily rainfall data, how do call a particular day?
Year,Month,Day,Amount
1900,12,22,1.3
1900,12,23,0
1900,12,24,0
1900,12,25,0
1900,12,26,0
1900,12,27,0
1900,12,28,0
1900,12,29,4.8
1900,12,30,0.3
1900,12,31,0.5
1901,1,1,0
1901,1,2,3
1901,1,3,0
1901,1,4,0.5
1901,1,5,0
1901,1,6,0
...
I used to use julian.date in S-Plus.
Thank you so much for your kind attention and help.