Description Usage Arguments Value Examples
View source: R/report_configuration.R
Report config: imports text file to list
1 | report_txt_to_config(config_txt = "report_config.txt")
|
config_txt |
path to report configuration text file created by a report configuration list e.g. as retrieved by function report_config_to_txt() |
saves report configuration list as text file
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
### Creates a configuration template
config <- report_config_template()
### Saves list config in text
report_config_to_txt(config_list = config, output_file = "report_config.txt")
### Reads config list from text file to
config_imported <- report_txt_to_config(config_txt = "report_config.txt")
### Check whether both are identical
identical(x = config, y = config_imported)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.