This function configures the content of the to-be-generated data profiling report.
Note
Individual settings will overwrite global settings. For example: if intro_args
has ggtheme
set to theme_light()
while global_ggtheme
is set to theme_gray()
, theme_light()
will be used.
When setting global themes using global_ggtheme
, please pass an unevaluated call to the theme function, e.g., quote(theme_light())
.
Examples
## Get default configuration
configure_report()
#> $introduce
#> list()
#>
## Set global theme
configure_report(global_ggtheme = quote(theme_light(base_size = 20L)))
#> $introduce
#> list()
#>