######################
## Ex1: Loading the DAILY precipitation data at SanMartino (25567 daily values)
data(SanMartinoPPts)
x <- SanMartinoPPts
## Transforming into NA the 10% of values in 'x'
n <- length(x)
n.nas <- round(0.1*n, 0)
na.index <- sample(1:n, n.nas)
x[na.index] <- NA
# Getting the amount of NAs in 'x' for each week (starting on Monday)
cmv(x, tscale="weekly")
# Getting the amount of NAs in 'x' for each month
cmv(x, tscale="monthly")
# Getting the amount of NAs in 'x' for each quarter
cmv(x, tscale="quarterly")
# Getting the amount of NAs in 'x' for each weather season
cmv(x, tscale="seasonal")
# Getting the amount of NAs in 'x' for each year
cmv(x, tscale="annual")
######################
## Ex2: Loading the time series of HOURLY streamflows for the station
## Karamea at Gorge (52579 hourly values)
data(KarameaAtGorgeQts)
x <- KarameaAtGorgeQts
## Transforming into NA the 30% of values in 'x'
n <- length(x)
n.nas <- round(0.1*n, 0)
na.index <- sample(1:n, n.nas)
x[na.index] <- NA
# Getting the amount of NAs in 'x' for each day
cmv(x, tscale="daily")
# Getting the amount of NAs in 'x' for each weather season
cmv(x, tscale="seasonal")
Run the code above in your browser using DataLab