I have a [r] large data frame with date variables, which reflect first day of the month. Is the a easy way to crete a new data frame date variable that represents the last day of the month?
Below is some sample data:
date.start.month=seq(as.Date("2012-01-01"),length=4,by="months")
df=data.frame(date.start.month)
df$date.start.month
"2012-01-01" "2012-02-01" "2012-03-01" "2012-04-01"
I would like to return a new variable wtih:
"2012-01-31" "2012-02-29" "2012-03-30" "2012-04-27"
I've tried the follwing but it was unsucessful:
df$date.end.month=seq(df$date.start.month,length=1,by="+1 months")
Any guidance to this new [r] user would be greatly appreciated.

"yearmon"class which represents year/month without needing a day in the first place:library(zoo); ym <- as.yearmon("2012-01") + 0:3/12. If you did want dates on the last day of the month thenas.Date(ym, frac = 1). – G. Grothendieck Feb 29 '12 at 18:01