hyet_missing computes missing values ratio using an hyetograph from the hyet_create function.

hyet_missing(hyet)

Arguments

hyet

a hyetograph from hyet_create function

Value

a tibble with missing values ratios per month and year

Note

hyet must not contain missing dates. Please use the hyet_fill function before hyet_missing.

Examples

# compute missing values ratio per month and year miss_vals <- prec5min %>% hyet_fill(time_step = 5) %>% hyet_missing()