[R] Summary about how to divide data by week
Rui Barradas
rui1174 at sapo.pt
Tue Apr 17 17:53:40 CEST 2012
Hello,
I'm glad you have a solution that works.
Maybe you could do the same without hard-coding the values 1:7, 8:14.
$
library(chron)
dat <- with(my_dataframe, paste(month, day, year, sep="/"))
week <- cut(chron(dat), breaks="weeks")
head(week)
tapply(my_dataframe$Freq, week, mean)
Hope this helps,
Rui Barradas
--
View this message in context: http://r.789695.n4.nabble.com/Summary-about-how-to-divide-data-by-week-tp4563909p4565199.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list