Re: [R] Plot history

2011-09-17 Thread R. Michael Weylandt
Could you repaste your data using dput() so we can see exactly what we are working with here. As things stand currently, I can't tell why it doesn't suffice to just combine the dates and times into POSIX objects and subtract them all from the first row. For more information on that approach, try ?

Re: [R] Plot history

2011-09-17 Thread Ayyappa Chaturvedula
Dear Group, Can you help me solve the problem with calculating Time Post dose using date time fomat? Here is information for subject 1 and I appreciate your help for code to generate time post dose from the first dose in each individual. Thank you in advance. Regards, Ayyappa ID DA

Re: [R] Plot history

2011-08-29 Thread David Winsemius
On Aug 29, 2011, at 6:03 PM, Ayyappa Chaturvedula wrote: Dear R group, I am trying to plot uisng a for loop. Here is the script: for (i in unique(cfn$ID)){ plot(cfn$TIME[cfn$ID==i],cfn$DV[cfn$ID==i],pch=16)} I could access only the last plot of the series and cannot go back to see all the

[R] Plot history

2011-08-29 Thread Ayyappa Chaturvedula
Dear R group, I am trying to plot uisng a for loop. Here is the script: for (i in unique(cfn$ID)){ plot(cfn$TIME[cfn$ID==i],cfn$DV[cfn$ID==i],pch=16)} I could access only the last plot of the series and cannot go back to see all the plots. I appreciate your help in resolving this issue and also