easystatsA dashboard containing the following details for the entered regression model:
tabular summary of parameter estimates
dot-and-whisker plot for parameter estimates
tabular summary of indices for the quality of model fit
collection of models for checking model assumptions
text report
model information table
model_dashboard(
model,
check_model_args = NULL,
parameters_args = NULL,
performance_args = NULL,
output_file = "easydashboard.html",
output_dir = getwd(),
rmd_dir = system.file("templates/easydashboard.Rmd", package = "easystats"),
quiet = FALSE,
browse_html = interactive()
)An HTML dashboard.
A regression model object.
A list of named arguments that are passed down to
performance::check_model(). For further documentation and details
about the arguments,
see this website.
See also 'Examples'.
A list of named arguments that are passed down to
parameters::model_parameters(). For further documentation and details
about the arguments,
see this website.
See also 'Examples'.
A list of named arguments that are passed down to
performance::model_performance(). For further documentation and details
about the arguments,
see this website.
See also 'Examples'.
A string specifying the file name in rmarkdown::render().
Default is "easydashboard.html".
A string specifying the path to the output directory for
report in rmarkdown::render(). Default is to use the working directory.
A string specifying the path to the directory containing the
RMarkdown template file. By default, package uses the template shipped with
the package installation (inst/templates/easydashboard.Rmd).
An option to suppress printing during rendering from knitr,
pandoc command line and others. To only suppress printing of the last
"Output created: " message, you can set rmarkdown.render.message to
FALSE
A logical deciding if the rendered HTML should be opened
in the browser. Defaults to interactive().
For models with many observations, or for more complex models in general,
generating the model assumptions plot might become very slow. One reason
is that the underlying graphic engine becomes slow for plotting many data
points. In such cases, setting the argument check_model_args = list(show_dots = FALSE)
might help. Furthermore, look at other arguments of ?performance::check_model,
which can be set using check_model_args, to increase performance (in
particular the check-argument can help, to skip some unnecessary checks).