Skip to content
Prev 205102 / 398506 Next

Chainging monthly data to daily data

Hi, I have a zoo object with monthly frequency :

library(zoo)
dat <- zooreg(rnorm(50), as.yearmon("2000-01-01"), frequency=12)

Now I want to make a zoo object with daily frequency from "dat" wherein
value for a each day for a particular month will be value of "dat" at that
particular month.

Is there any easy way to do that?

Thanks,