Description Usage Arguments Details Value Examples
View source: R/pipeline-helpers.R
protect_integer_cols
will prepend an 'X' to column names that are bare
integers to protect them from being misinterpreted during sensitive
operations (see below). unprotect_integer_cols
will reverse the
effect, reverting the column names to their original form.
1 2 3 |
d |
The data to have integer column names protected or unprotected |
Some of our data frames have column names that are years, such as "2005". In some cases a column name of this form can be misinterpreted as a column index, the (likely nonexistent) 2005th column in this example. The *_if functions in dplyr are examples of such circumstances. Protecting the column names with a leading character allows these functions to perform normally.
Much of the data system is expecting years in column names to be bare integers; therefore, you should unprotect the column names as soon as the sensitive operations are complete.
Tibble with the integer column names protected
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.