subdaily2daily {hydroTSM} | R Documentation |
Generic function for transforming a Sub-DAILY time series into a DAILY one
subdaily2daily(x, ...) ## Default S3 method: subdaily2daily(x, FUN, na.rm = TRUE, ...) ## S3 method for class 'zoo' subdaily2daily(x, FUN, na.rm = TRUE, ...) ## S3 method for class 'data.frame' subdaily2daily(x, FUN, na.rm = TRUE, 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, 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? |
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
subdaily2monthly
, subdaily2annual
, subdaily2seasonal
, as.POSIXct
, dm2seasonal
, monthlyfunction
, seasonalfunction
, hydroplot
, vector2zoo
, izoo2rzoo
## 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)