Description Usage Arguments Details Examples
Split the title column in several columns
1 | split_title(df, title_col_name, n_split = "max", lang = "en")
|
df |
a dataframe containing a title column |
title_col_name |
the column name to be splitted, if missing it will be either TITLE_EN |
n_split |
number of new columns, by default the maximum is chosen |
lang |
by default it returns an English title (its default value is "en"), any other value returns a French title |
The number of separators in the official INSEE title can vary and is not normalized. Beware all title columns created may not be a cleaned dimension label.
1 2 3 4 5 | # quarterly payroll enrollment in the construction sector
data_raw = get_insee_idbank("001577236")
data = data_raw %>%
split_title(lang = "fr")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.