summary,dpm-method {dpm} | R Documentation |
Summarize dpm objects
Description
The summary method is designed to offer similar arguments to
lavaan
's summary, but with shorter and more domain-specific output.
Usage
## S4 method for signature 'dpm'
summary(
object,
standardized = FALSE,
ci = FALSE,
se = TRUE,
zstat = TRUE,
pvalue = TRUE,
ci.level = 0.95,
boot.ci.type = c("perc", "norm", "basic", "bca.simple"),
digits = getOption("dpm-digits", 3),
...
)
Arguments
object |
A |
standardized |
Use |
ci |
Show confidence intervals? Default is FALSE. |
se |
Show standard errors? Default is TRUE. |
zstat |
Show the z statistic? Default is TRUE. |
pvalue |
Show p values? Default is TRUE. |
ci.level |
How wide should the confidence intervals be? Ignored if
|
boot.ci.type |
If the model was fit with bootstrapped standard errors
and |
digits |
How many digits should be printed in the model summary?
Default is 3. You can set a default by setting the option |
... |
Ignored. |
Value
Returns a summary.dpm
object, which is a list with three elements:
-
model
: Thedpm
object. -
coefficients
: A data frame containing coefficient estimates, standard errors, p values, and so on. -
fitmeasures
: A numeric vector containing model fit information.
The primary function of the object is to be printed to the console.