Learn R Programming

hydrostats (version 0.2.9)

daily.cv: Calculate daily cofficient of variation

Description

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.

Usage

daily.cv(flow.ts)

Arguments

flow.ts

Dataframe with date and discharge data in columns named "Date" and "Q" respectively. Date must be in POSIX format (see ts.format)

Value

A dataframe with one column (daily.cv).

Examples

Run this code
# NOT RUN {
data(Cooper)
Cooper<-ts.format(Cooper)

daily.cv(Cooper)

# }

Run the code above in your browser using DataLab