This function configures the content of the to-be-generated data profiling report.
configure_report(
add_introduce = TRUE,
add_plot_intro = TRUE,
add_plot_str = TRUE,
add_plot_missing = TRUE,
add_plot_histogram = TRUE,
add_plot_density = FALSE,
add_plot_qq = TRUE,
add_plot_bar = TRUE,
add_plot_correlation = TRUE,
add_plot_prcomp = TRUE,
add_plot_boxplot = TRUE,
add_plot_scatterplot = TRUE,
introduce_args = list(),
plot_intro_args = list(),
plot_str_args = list(type = "diagonal", fontSize = 35, width = 1000, margin = list(left
= 350, right = 250)),
plot_missing_args = list(),
plot_histogram_args = list(),
plot_density_args = list(),
plot_qq_args = list(sampled_rows = 1000L),
plot_bar_args = list(),
plot_correlation_args = list(cor_args = list(use = "pairwise.complete.obs")),
plot_prcomp_args = list(),
plot_boxplot_args = list(),
plot_scatterplot_args = list(sampled_rows = 1000L),
global_ggtheme = quote(theme_gray()),
global_theme_config = list()
)
add introduce? Default is TRUE
.
add plot_intro? Default is TRUE
.
add plot_str? Default is TRUE
.
add plot_missing? Default is TRUE
.
add plot_histogram? Default is TRUE
.
add plot_density? Default is FALSE
.
add plot_qq? Default is TRUE
.
add plot_bar? Default is TRUE
.
add plot_correlation? Default is TRUE
.
add plot_prcomp? Default is TRUE
.
add plot_boxplot? Default is TRUE
.
add plot_scatterplot? Default is TRUE
.
arguments to be passed to introduce. Default is list()
.
arguments to be passed to plot_intro. Default is list()
.
arguments to be passed to plot_str. Default is list(type = "diagonal", fontSize = 35, width = 1000, margin = list(left = 350, right = 250))
.
arguments to be passed to plot_missing. Default is list()
.
arguments to be passed to plot_histogram. Default is list()
.
arguments to be passed to plot_density. Default is list()
.
arguments to be passed to plot_qq. Default is list(sampled_rows = 1000L)
.
arguments to be passed to plot_bar. Default is list()
.
arguments to be passed to plot_correlation. Default is list("cor_args" = list("use" = "pairwise.complete.obs"))
.
arguments to be passed to plot_prcomp. Default is list()
.
arguments to be passed to plot_boxplot. Default is list()
.
arguments to be passed to plot_scatterplot. Default is list(sampled_rows = 1000L)
.
global setting for theme. Default is quote(theme_gray())
.
global setting for theme. Default is list()
.
create_report
## Get default configuration
configure_report()
## Set global theme
configure_report(global_ggtheme = quote(theme_light(base_size = 20L)))
Run the code above in your browser using DataLab