I have a data frame which is organized as follows:
Subject ID | Collected Date | Value
3933332 9/14/2004 9:38 0.576
3933332 9/15/2004 3:48 1.164
3933332 9/17/2004 9:38 2.112
3933332 9/21/2004 1:00 1.547
6955455 5/12/2011 2:11 0.012
6955455 5/13/2011 1:31 0.023
6955455 5/14/2011 3:11 0.112
6955455 5/17/2011 12:11 0.342
... .... ...
What I need is:
Subject ID | Day | Value
3933332 1 0.576
3933332 2 1.164
3933332 4 2.112
3933332 8 1.547
6955455 1 0.012
6955455 2 0.023
6955455 3 0.112
6955455 6 0.342
... .... ...
edit: for clarification, the new subject ID has a new start date.
I know that I can use as.Date to format the date (time is not relevant for me). Next step would probably be to use a plyr and/or apply function to split up the set by subject ID, but I don't know how to do that.
Can you help me?
Here is one idea. I am not sure how exactly your data was composed. I, therefore, decided to create a data frame based on what you have above. Please note that
Date
ischaracter
infoo
.Extra: This is my naive translation of the code above to a data.table idea.
DATA