######################
## Ex1: Computation of WEEKLY values from HOURLY ts, removing any missing value in 'x'
## Loading the HOURLY streamflows for the station Karamea at Gorge
data(KarameaAtGorgeQts)
x <- KarameaAtGorgeQts
# Sub-daily to weekly ts
subdaily2weekly(x, FUN=mean, na.rm=TRUE)
if (FALSE) {
######################
## Ex2: Computation of WEEKLY values from HOURLY ts, only when the percentage of NAs in
# each week is lower than a user-defined percentage (10
## Loading the HOURLY streamflows for the station Karamea at Gorge
data(KarameaAtGorgeQts)
x <- KarameaAtGorgeQts
# Subsetting 'x' to its first three weeks
# (Monday 2nd December 1985 - Sunday 29th uanuary 20th 1980)
x <- window(x, end="1985-12-31 23:59:00")
## Transforming into NA the 10
set.seed(10) # for reproducible results
n <- length(x)
n.nas <- round(0.1*n, 0)
na.index <- sample(1:n, n.nas)
x[na.index] <- NA
## Daily to Weekly, only for weeks with less than 10
( w2 <- subdaily2weekly(x, FUN=sum, na.rm=TRUE, na.rm.max=0.1) )
# Verifying that the second and third month of 'x' had 10
cmv(x, tscale="weekly")
######################
## Ex3: Computation of WEEKLY values from HOURLY ts, removing any missing value in 'x'
# Loading the HOURLY streamflows for the station Karamea at Gorge
data(KarameaAtGorgeQts)
x <- KarameaAtGorgeQts
# Sub-daily to weekly ts
subdaily2weekly(x, FUN=mean, na.rm=TRUE)
}
Run the code above in your browser using DataLab