Given a POSIXct date time, how do you extract the first day of the month for aggregation?
library(lubridate) full.date <- ymd_hms(\"2013-01-01 00:00:21\"
i have another solution :
first.of.month <- full.date - mday(full.date) + 1
but it needs the library 'lubridate' or 'date.table'(aggregation with data.table)