qm_vol | R Documentation |
Converts mean monthly river discharge [m3/s] to total volume discharge [hm3].
qm_vol(x, col_name, out_name = NULL)
x |
data frame with class Date in the first column and numeric on the others. |
col_name |
string with column(s) name(s) where to apply the function. |
out_name |
optional. String with new column(s) name(s). If you set it as |
The same data frame but with the total volume discharge.
# read guido daily streamflow records
path <- system.file('extdata', 'snih_qd_guido.xlsx',
package = 'hydrotoolbox')
# read, aggregate the function to monthly resolution and get the volume
qm_guido <-
read_snih(path = path, by = 'day', out_name = 'q(m3/s)') %>%
agg_table(col_name = 'q(m3/s)', fun = 'mean', period = 'monthly',
out_name = 'qm(m3/s)') %>%
qm_vol(col_name = 'qm(m3/s)', out_name = 'vm(hm3)')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.