- model
A model specified using lavaan notation and above. See model.syntax
for basic model specification.
For the power analysis, the population parameter values should be provided in the following way. For example, the coefficient between math and HE is .39. Then it is specified as start(.39). If the parameter will be referred in the mediation effect, a label should be given as a modifier as b*HE+start(.39)*HE.
model<-'
math ~ c*ME+start(0)*ME + b*HE+start(.39)*HE
HE ~ a*ME+start(.39)*ME
'
- indirect
The indirect or other composite effects are specified in the following way
indirect<-'
ab: = a*b
abc := a*b + c
'
- nobs
Number of observations for power analysis. It is typically should be a vector for single group analysis. For multiple group analysis, it should be a matrix.
- type
Type of power analysis
- nrep
Number of replications for Monte Carlo simulation. At least 1,000 is recommended.
- nboot
Number of bootstraps to conduct.
- alpha
The alpha level is used to obtain the confidence interval for model parameters.
- skewness
A vector to give the skewness for the observed variables.
- kurtosis
A vector to give the kurtosis for the observed variables.
- ovnames
A vector to give the variable names for the observed variables. This is only needed when the skewness and kurtosis are provided. The skewness, kurtosis and variable names should be in the same order.
- se
How to calculate the standard error, for example, robust standard error can be specified using se="robust".
- estimator
Estimation methods to be used here.
- parallel
Parallel methods, snow or multicore, can be used here.
- ncore
Number of cores to be used in parallel. By default, the maximum number of cores are used.
- ci
Type of bootstrap confidence intervals. By default, the percentile one is used. To get the bias-corrected one, use ci='BC'
- boot.type
Type of bootstrap method. By default, the nonparametric one is used. Changing it to "BS" to use the Bollen-Stine method.
- interactive
Whether to get the figure interactively.
- ...
Other named arguments for lavaan can be passed here.