######################
## Ex1: Computing and plotting the baseflows for the full time period
## of a given time series of streamflows.
## First, we load the daily Q time series for the Cauquenes en
## El Arrayan catchment, where Q, [m3/s] are stored in the sixth column.
data(Cauquenes7336001)
q <- Cauquenes7336001[, 6]
## Computing the daily baseflow for the full time period
#baseflow(q) # it can not run due to NA values in 'x'
# filling the NA values using spline interpolation
baseflow(q, na.fill="spline")
## Computing and plotting the daily baseflow for the full time period
baseflow(q, na.fill="spline", plot=TRUE)
######################
## Ex2: Computing and plotting the daily baseflow only for a
## specific time period, from April to December 2000.
baseflow(q, na.fill="spline", from="2000-04-01", to="2000-12-31")
######################
## Ex3: Computing and plotting the three daily baseflows (one for each pass
## of the filter) only for a specific time period, from April to December
## 2000.
baseflow(q, na.fill="spline", from="2000-04-01", to="2000-12-31",
out.type="all", plot=TRUE)
Run the code above in your browser using DataLab