Description Usage Arguments Value Examples
These functions help you create a readable table of information, intended to be used to populate a coversheet in an Excel report.
1 2 3 4 5 6 7 8 9 | info_table(..., .pretty_names = TRUE)
default_info_table(
data_included = "",
data_exported_by = get_user(),
exported_on = strftime(Sys.time(), "%Y-%m-%d"),
.pretty_names = TRUE,
...
)
|
... |
Named vectors. The names give the single value that will appear in the left-hand column, while the values will appear on separate rows in the right-hand column. |
.pretty_names |
If |
data_included |
The names of the data sheets included in the report |
data_exported_by |
The name of the reporter |
exported_on |
The date of the report |
A data.frame
1 2 3 4 5 6 7 8 9 | info_table(
first_category = letters[1:3],
second_category = "d"
)
default_info_table(
data_included = c("Blackberry", "Apple", "Orange"),
author = "Jacob"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.