set_summ_defaults | R Documentation |
summ()
functionsThis function is convenience wrapper for manually setting
options using options()
. This gives a handy way to, for instance,
set the arguments to be used in every call to summ()
in your
script/session.
To make the settings persist across sessions, you can run this in your
.Rprofile
file.
Note that arguments that do not apply (e.g., robust
for merMod
models)
are silently ignored when those types of models are used.
set_summ_defaults(
digits = NULL,
model.info = NULL,
model.fit = NULL,
model.coefs = NULL,
pvals = NULL,
robust = NULL,
confint = NULL,
ci.width = NULL,
vifs = NULL,
conf.method = NULL,
table.format = NULL
)
digits |
An integer specifying the number of digits past the decimal to
report in the output. Default is 2. You can change the default number of
digits for all jtools functions with
|
model.info |
Toggles printing of basic information on sample size, name of DV, and number of predictors. |
model.fit |
Toggles printing of model fit statistics. |
model.coefs |
Toggles printing of model coefficents. |
pvals |
Show p values? If |
robust |
If not Default is This requires the |
confint |
Show confidence intervals instead of standard errors? Default
is |
ci.width |
A number between 0 and 1 that signifies the width of the
desired confidence interval. Default is |
vifs |
If |
conf.method |
Argument passed to |
table.format |
A format understood by |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.