summarize_wq | R Documentation |
This function takes a water data frame defined by define_water
and outputs a formatted summary table of
specified water quality parameters.
summarise_wq()
and summarize_wq()
are synonyms.
summarize_wq(water, params = c("general"))
summarise_wq(water, params = c("general"))
water |
Source water vector created by |
params |
List of water quality parameters to be summarized. Options include "general", "ions", and "dbps". Defaults to "general" only. |
Use chemdose_dbp
for modeled DBP concentrations.
A knitr_kable table of specified water quality parameters.
# Summarize general parameters
water_defined <- define_water(7, 20, 50, 100, 80, 10, 10, 10, 10, tot_po4 = 1)
summarize_wq(water_defined)
# Summarize major cations and anions
summarize_wq(water_defined, params = list("ions"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.