dissolve_cu_once {tidywater} | R Documentation |
Calculate Dissolved Copper Concentration
Description
Calculate Dissolved Copper Concentration
Usage
dissolve_cu_once(df, input_water = "defined_water")
Arguments
df |
a data frame containing a water class column, which has already been computed using define_water_chain |
input_water |
name of the column of Water class data to be used as the input for this function. Default is "defined_water". |
Value
dissolve_cu_once
returns a data frame containing the original data frame and a column for dissolved copper in mg/L.
Examples
library(dplyr)
cu_calc <- water_df %>%
define_water_chain() %>%
dissolve_cu_once()
[Package tidywater version 0.9.0 Index]