View source: R/create_qualifiers.R
create_qualifiers | R Documentation |
Create the Qualifiers table
create_qualifiers(L0_flat, QualifierCode, QualifierDescription)
L0_flat |
(tbl_df, tbl, data.frame) The fully joined source L0 dataset, in "flat" format (see details). |
QualifierCode |
(character) Column in |
QualifierDescription |
(character) Column in |
This function appends columns to the L0_flat
table and
returns the augmented table.
"flat" format refers to the fully joined source L0 dataset in "wide" form with the exception of the core observation variables, which are in "long" form (i.e. using the variable_name, value, unit columns of the observation table). This "flat" format is the "widest" an L1 hymetDP dataset can be consistently spread due to the frequent occurrence of L0 source datasets with > 1 core observation variable.
flat <- hymet_L0_flat
Qualifiers <- hymetDP::create_qualifiers( L0_flat = flat, QualifierCode = "QualifierCode", QualifierDescription = "QualifierDescription")
Qualifiers
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.