| modificationIndices {lavaan} | R Documentation |
Modification indices of a latent variable model.
modificationIndices(object, standardized = TRUE, power = FALSE,
delta = 0.1, alpha = 0.05, high.power = 0.75)
modindices(object, standardized = TRUE, power = FALSE,
delta = 0.1, alpha = 0.05, high.power = 0.75)
object |
An object of class |
standardized |
If |
power |
If |
delta |
The value of the effect size, as used in the post-hoc power computation, currently using the unstandardized metric of the epc column. |
alpha |
The significance level used for deciding if the modification index is statistically significant or not. |
high.power |
If the computed power is higher than this cutoff value, the power is considered ‘high’. If not, the power is considered ‘low’. This affects the values in the 'decision' column in the output. |
A data.frame containing modification indices and EPC's.
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9 '
fit <- cfa(HS.model, data=HolzingerSwineford1939)
modindices(fit)