add_indent | R Documentation |
Add the indentme
variable to your results data. This drives the number of
indents for the row label text (e.g. 0, 1, 2, etc.).
add_indent(df)
df |
dataframe of results that contains |
The group_level
variable, which is added to the results dataframe by freq()
and univar()
calls, is needed to define indentation when by variables are
used for summary.
The nested_level
variable, which is added to the results dataframe by
nested_freq()
, is needed to define indentation for each level of nesting.
Both of these are added to the default indentation which is driven by
row_type
.
row_type | default indentation |
TABLE_BY_HEADER | 0 |
BY_HEADER[1-9] | 0 |
HEADER | 0 |
N | 1 |
VALUE | 2 |
NESTED | 0 |
dataframe with the indentme
variable added.
df <- tibble::tibble(row_type = c("TABLE_BY_HEADER", "HEADER",
"BY_HEADER1", "N", "VALUE", "COUNTS", "UNIVAR", "NESTED", "NESTED"),
nested_level = c(NA, NA, NA, NA, NA, NA, NA, 1, 2),
group_level = c(0, 0, 0, 0, 0, 0, 0, 0, 0),
label = c(NA, NA, NA, NA, NA, "N",NA, NA, NA),
by = c(NA, NA, NA, NA, NA, NA, NA, NA, NA),
tableby = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))
add_indent(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.