daily.cv {hydrostats} | R Documentation |
This function takes a daily time series and returns the coefficient of variation of daily flows expressed as a percentage.
i.e. (sd/mean)*100
Missing values are ignored.
daily.cv(flow.ts)
flow.ts |
Dataframe with date and discharge data in columns named "Date" and "Q" respectively. Date must be in POSIX format (see ts.format) |
A dataframe with one column (daily.cv).
Nick Bond <n.bond@latrobe.edu.au>
data(Cooper)
Cooper<-ts.format(Cooper)
daily.cv(Cooper)