Sub-daily -> Daily
Generic function for transforming a Sub-DAILY time series into a DAILY one
subdaily2daily(x, ...) ## Default S3 method: subdaily2daily(x, FUN, na.rm = TRUE, start="00:00:00", ...) ## S3 method for class 'zoo' subdaily2daily(x, FUN, na.rm = TRUE, start="00:00:00", ...) ## S3 method for class 'data.frame' subdaily2daily(x, FUN, na.rm = TRUE, start="00:00:00", dates=1, date.fmt="%Y-%m-%d %H:%M:%S", out.fmt="zoo", verbose= TRUE, ...) ## S3 method for class 'matrix' subdaily2daily(x, FUN, na.rm = TRUE, start="00:00:00", dates=1, date.fmt="%Y-%m-%d %H:%M:%S", out.fmt="zoo", verbose= TRUE, ...)
x |
xts, data.frame or matrix object, with sub-daily time series. |
FUN |
Function that have to be applied for transforming from sub-daily to daily time step. (e.g., for precipitation |
na.rm |
Logical. Should missing values be removed? |
start |
character, indicating the starting time used for aggregating subdaily time series into daily ones. It MUST be provided in the |
dates |
numeric, factor, POSIXct or POSIXt object indicating how to obtain the dates and times for each gauging station |
date.fmt |
character indicating the format in which the dates are stored in |
out.fmt |
OPTIONAL. Only used when |
verbose |
logical; if TRUE, progress messages are printed |
... |
further arguments passed to or from other methods. |
Mauricio Zambrano-Bigiarini, mzb.devel@gmail
## Loading the time series of hourly streamflows for the station Karamea at Gorge data(KarameaAtGorgeQts) x <- KarameaAtGorgeQts # Plotting the hourly streamflow values plot(x) ## sub-daily to Daily d <- subdaily2daily(x, FUN=sum, na.rm=TRUE) # Plotting the daily streamflow values plot(d)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.