View source: R/cbs4_add_label_columns.R
| cbs4_add_label_columns | R Documentation |
Add columns with labels to the dataset.
cbs4_add_label_columns(data, ...)
data |
downloaded with |
... |
not used |
cbs4_add_label_columns() adds for the Measure and each <Dimension>
column an extra column MeasureLabel ( <Dimension>Label) that contains
the Title of each code, making the table more digestible. Title and
other metadata can also be found using cbs4_get_metadata().
original dataset with extra label columns. See details.
cbs4_get_metadata()
Other add metadata columns:
cbs4_add_date_column(),
cbs4_add_unit_column()
if (interactive()){
# works on observations
obs <- cbs4_get_observations("84287NED", Perioden="2019MM12")
obs # without label columns
obs_labeled <- cbs4_add_label_columns(obs)
obs_labeled
# works on data
d <- cbs4_get_data("84287NED", Perioden="2019MM12")
d # cbs4_get_data automagically labels measure columns.
d_labeled <- cbs4_add_label_columns(d)
d_labeled
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.