Description Usage Arguments Value Examples
View source: R/calculate_operational_parameters_berlin_s.R
Calculate operational parameters for Berlin-Schoenerlinde
1 2 3 4 5 6 7 | calculate_operational_parameters_berlin_s(df, calc_list = list(deltaSAK =
"(1-SCAN_SAK_Ablauf/SCAN_SAK_Zulauf)*100", Ozoneintrag =
"(C_O3_Zugas - C_O3_Abgas)*Q_Gas/Q_Ozonanlage"),
calc_list_name = c("delta SAK", "Ozoneintrag"),
calc_list_unit = c("%", "mg-O3/L"),
calc_paras = c("SCAN_SAK_Ablauf", "SCAN_SAK_Zulauf", "C_O3_Zugas",
"C_O3_Abgas", "Q_Gas", "Q_Ozonanlage"))
|
df |
a data frame as retrieved by read_wedeco_data() |
calc_list |
list with calculation operations to be carried out (default: list(deltaSAK = "(1-SCAN_SAK_Ablauf/SCAN_SAK_Zulauf)*100", Ozoneintrag = "(C_O3_Zugas - C_O3_Abgas)*Q_Gas/Q_Ozonanlage")) |
calc_list_name |
full names of parameters to be used for plotting for each calculation specified wit 'calc_list'. default: c('delta SAK', 'Ozoneintrag') |
calc_list_unit |
units of parameters to be used for plotting for each calculation specified wit 'calc_list'. default: c("percent", "mg-O3/L") |
calc_paras |
a vector with parameter codes used for performing calculations defined in 'calc_list' (default: c("SCAN_SAK_Ablauf", "SCAN_SAK_Zulauf", "C_O3_Zugas", "C_O3_Abgas", "Q_Gas", "Q_Ozonanlage")) |
dataframe with calculated operational parameters
1 2 3 4 | ## Not run:
raw_list <- read_wedeco_data()
myDat <- calculate_operational_parameters_berlin_s(df = raw_list)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.