##
## Example1: creating daily data
# Generating a numeric variable (e.g., read from the outputs of an hydrological model)
x <- 1:31
# Generating the dates corresponding to the previous values
dates <- dip("1961-01-01", "1961-01-31")
## Transforming from 'numeric' to 'zoo' class
z <- vector2zoo(x, dates)
##
## Example2: creating hourly data
# Generating a numeric variable
x <- rnorm(7)
# Generating hourly times since 17:00:00 up to 23:00:00 for 2012-Oct-15
dates <- ISOdatetime(2012, 10, 15, 17:23, 00, 0)
## Transforming from 'numeric' to 'zoo' class
z <- vector2zoo(x, dates)
Run the code above in your browser using DataLab