semPower.powerMediation {semPower} | R Documentation |
semPower.powerMediation
Description
Convenience function for performing power analysis concerning indirect effect(s) in a mediation model. This requires the lavaan package.
Usage
semPower.powerMediation(
type,
comparison = "restricted",
bYX = NULL,
bMX = NULL,
bYM = NULL,
Beta = NULL,
indirect = NULL,
nullEffect = "ind = 0",
nullWhichGroups = NULL,
standardized = TRUE,
...
)
Arguments
type |
type of power analysis, one of |
comparison |
comparison model, one of |
bYX |
the slope (direct effect) for X -> Y. A list for multiple group models. Can be |
bMX |
the slope for X -> M. A list for multiple group models. Can be |
bYM |
the slope for M -> Y. A list for multiple group models. Can be |
Beta |
can be used instead of |
indirect |
|
nullEffect |
defines the hypothesis of interest, must be one of |
nullWhichGroups |
for |
standardized |
whether all parameters should be standardized ( |
... |
mandatory further parameters related to the specific type of power analysis requested, see |
Details
This function performs a power analysis to reject various hypotheses arising in the context of mediation:
-
nullEffect = 'ind = 0'
: Tests the hypothesis that an indirect effect is zero. -
nullEffect = 'indA = indB'
: Tests the hypothesis that an indirect effect is equal in two or more groups. This is currently only possible for models without latent variables.
The indirect effect of interest can be specified in two ways:
If a simple mediation involving three variables of the form
X -> M -> Y
is assumed, the argumentsbYX
,bMX
, andbYM
are used to define the respective slopes, e. g.bYX = .4
,bMX = .5
, andbYM = .3
translates toX -- .5 --> M -- .3 --> Y
andX -- .4 --> Y
.More complex mediation structures can be defined by providing the
Beta
matrix along withindirect
specifying which paths define the indirect effect. See examples below.
Notes on implementation:
For models without latent variables,
nullEffect = 'ind = 0'
andnullEffect = 'indA = indB'
constrain the indirect effect to zero and to equality, respectively, yielding the test described in Tofighi & Kelley (2020).For models with latent variables and
nullEffect = 'ind = 0'
, power is (sometimes roughly) approximated by constraining the smallest slope contained in the indirect effect to zero.For models with latent variables multiple groups (i. e.,
nullEffect = 'indA = indB'
), there is currently no way to determine power.
Tofighi, D., & Kelley, K. (2020). Improved inference in mediation analysis: Introducing the model-based constrained optimization procedure. Psychological Methods, 25(4), 496–515. https://doi.org/10.1037/met0000259
Beyond the arguments explicitly contained in the function call, additional arguments are required specifying the factor model and the requested type of power analysis.
Additional arguments related to the definition of the factor model:
-
Lambda
: The factor loading matrix (with the number of columns equaling the number of factors). -
loadings
: Can be used instead ofLambda
: Defines the primary loadings for each factor in a list structure, e. g.loadings = list(c(.5, .4, .6), c(.8, .6, .6, .4))
defines a two factor model with three indicators loading on the first factor by .5, , 4., and .6, and four indicators loading on the second factor by .8, .6, .6, and .4. -
nIndicator
: Can be used instead ofLambda
: Used in conjunction withloadM
. Defines the number of indicators by factor, e. g.,nIndicator = c(3, 4)
defines a two factor model with three and four indicators for the first and second factor, respectively.nIndicator
can also be a single number to define the same number of indicators for each factor. -
loadM
: Can be used instead ofLambda
: Used in conjunction withnIndicator
. Defines the loading either for all indicators (if a single number is provided) or separately for each factor (if a vector is provided), e. g.loadM = c(.5, .6)
defines the loadings of the first factor to equal .5 and those of the second factor do equal .6.
So either Lambda
, or loadings
, or nIndicator
and loadM
need to be defined.
If the model contains observed variables only, use Lambda = diag(x)
where x
is the number of variables.
Note that in case of a simple mediation model involving three variables, the order of the factors is X, M, Y, i. e., the first factor is treated as X, the second as M, and the thrird as Y. In case of a more complex mediation defined via the Beta
matrix, the order of factors matches the order of Beta
.
Additional arguments related to the requested type of power analysis:
-
alpha
: The alpha error probability. Required fortype = 'a-priori'
andtype = 'post-hoc'
. Either
beta
orpower
: The beta error probability and the statistical power (1 - beta), respectively. Only fortype = 'a-priori'
.-
N
: The sample size. Always required fortype = 'post-hoc'
andtype = 'compromise'
. Fortype = 'a-priori'
and multiple group analysis,N
is a list of group weights. -
abratio
: The ratio of alpha to beta. Only fortype = 'compromise'
.
If a simulated power analysis (simulatedPower = TRUE
) is requested, optional arguments can be provided as a list to simOptions
:
-
nReplications
: The targeted number of simulation runs. Defaults to 250, but larger numbers greatly improve accuracy at the expense of increased computation time. -
minConvergenceRate
: The minimum convergence rate required, defaults to .5. The maximum actual simulation runs are increased by a factor of 1/minConvergenceRate. -
type
: specifies whether the data should be generated from a population assuming multivariate normality ('normal'
; the default), or based on an approach generating non-normal data ('IG'
,'mnonr'
,'RC'
, or'VM'
). The approaches generating non-normal data require additional arguments detailed below. -
missingVars
: vector specifying the variables containing missing data (defaults to NULL). -
missingVarProp
: can be used instead ofmissingVars
: The proportion of variables containing missing data (defaults to zero). -
missingProp
: The proportion of missingness for variables containing missing data (defaults to zero), either a single value or a vector giving the probabilities for each variable. -
missingMechanism
: The missing data mechanism, one ofMCAR
(the default),MAR
, orNMAR
. -
nCores
: The number of cores to use for parallel processing. Defaults to 1 (= no parallel processing). This requires thedoSNOW
package.
type = 'IG'
implements the independent generator approach (IG, Foldnes & Olsson, 2016) approach
specifying third and fourth moments of the marginals, and thus requires that skewness (skewness
) and excess kurtosis (kurtosis
) for each variable are provided as vectors. This requires the covsim
package.
type = 'mnonr'
implements the approach suggested by Qu, Liu, & Zhang (2020) and requires provision of Mardia's multivariate skewness (skewness
) and kurtosis (kurtosis
), where
skewness must be non-negative and kurtosis must be at least 1.641 skewness + p (p + 0.774), where p is the number of variables. This requires the mnonr
package.
type = 'RK'
implements the approach suggested by Ruscio & Kaczetow (2008) and requires provision of the population distributions
of each variable (distributions
). distributions
must be a list (if all variables shall be based on the same population distribution) or a list of lists.
Each component must specify the population distribution (e.g. rchisq
) and additional arguments (list(df = 2)
).
type = 'VM'
implements the third-order polynomial method (Vale & Maurelli, 1983)
specifying third and fourth moments of the marginals, and thus requires that skewness (skewness
) and excess kurtosis (kurtosis
) for each variable are provided as vectors. This requires the semTools
package.
Value
a list. Use the summary
method to obtain formatted results. Beyond the results of the power analysis and a number of effect size measures, the list contains the following components:
Sigma |
the population covariance matrix. A list for multiple group models. |
mu |
the population mean vector or |
SigmaHat |
the H0 model implied covariance matrix. A list for multiple group models. |
muHat |
the H0 model implied mean vector or |
modelH0 |
|
modelH1 |
|
simRes |
detailed simulation results when a simulated power analysis ( |
See Also
semPower.genSigma()
semPower.aPriori()
semPower.postHoc()
semPower.compromise()
Examples
## Not run:
# simple case of X -> M -> Y mediation in the form of
# X -- .30 --> M -- .40 --> Y
# X --------- .25 --------> Y
# determine the required N to detect the indirect effect of >= .12 (= .3 * .4)
# with a power of 95% on alpha = 5%, where
# X is measured by 3 indicators loading by .5 each,
# M is measured by 5 indicators loading by .6 each,
# Y is measured by 4 indicators loading by .7 each.
powerMed <- semPower.powerMediation(type = 'a-priori',
bYX = .25, bMX = .3, bYM = .4,
nIndicator = c(3, 5, 4),
loadM = c(.5, .6, .7),
alpha = .05, beta = .05)
# show summary
summary(powerMed)
# optionally use lavaan to verify the model was set-up as intended
lavaan::sem(powerMed$modelH1, sample.cov = powerMed$Sigma,
sample.nobs = powerMed$requiredN, sample.cov.rescale = FALSE)
lavaan::sem(powerMed$modelH0, sample.cov = powerMed$Sigma,
sample.nobs = powerMed$requiredN, sample.cov.rescale = FALSE)
# same as above, but determine power with N = 500 on alpha = .05
powerMed <- semPower.powerMediation(type = 'post-hoc',
bYX = .25, bMX = .3, bYM = .4,
nIndicator = c(3, 5, 4),
loadM = c(.5, .6, .7),
alpha = .05, N = 500)
# same as above, but determine the critical chi-square with N = 500 so that alpha = beta
powerMed <- semPower.powerMediation(type = 'compromise',
bYX = .25, bMX = .3, bYM = .4,
nIndicator = c(3, 5, 4),
loadM = c(.5, .6, .7),
abratio = 1, N = 500)
# same as above, but compare to the saturated model
# (rather than to the less restricted model)
powerMed <- semPower.powerMediation(type = 'a-priori',
comparison = 'saturated',
bYX = .25, bMX = .3, bYM = .4,
nIndicator = c(3, 5, 4),
loadM = c(.5, .6, .7),
alpha = .05, beta = .05)
# same as above, but assuming observed variables only (Lambda = diag(3))
powerMed <- semPower.powerMediation(type = 'a-priori',
bYX = .25, bMX = .3, bYM = .4,
Lambda = diag(3),
alpha = .05, beta = .05)
# same mediation model as above, but specifying Beta and indirect
Beta <- matrix(c(
# X M Y
c(.00, .00, .00), # X
c(.30, .00, .00), # M
c(.25, .40, .00) # Y
), byrow = TRUE, ncol = 3)
powerMed <- semPower.powerMediation(type = 'a-priori',
Beta = Beta,
indirect = list(c(2, 1), c(3, 2)),
nIndicator = c(3, 5, 4),
loadM = c(.5, .6, .7),
alpha = .05, beta = .05)
# Beta for a more complex mediation hypothesis
# of the form X -- .2 --> M1 -- .3 --> M2 -- .40 -> Y
# (and all other effects being zero)
# using a reduced loading matrix to define that
# X is measured by 3 indicators loading by .4, .5, .8
# M1 is measured by 4 indicators loading by .7, .6, .5, .8
# M2 is measured by 5 indicators loading by .5, .6, .3, .4, .6
# Y is measured by 4 indicators loading by .6, .7, .8
Beta <- matrix(c(
c(.00, .00, .00, .00), # X
c(.20, .00, .00, .00), # M1
c(.00, .30, .00, .00), # M2
c(.00, .00, .40, .00) # Y
), byrow = TRUE, ncol = 4)
loadings <- list(
c(0.4, 0.5, 0.8), # X
c(0.7, 0.6, 0.5, 0.8), # M1
c(0.5, 0.6, 0.3, 0.4, 0.6), # M2
c(0.6, 0.7, 0.8) # Y
)
powerMed <- semPower.powerMediation(type = 'a-priori',
Beta = B,
indirect = list(c(2, 1),
c(3, 2),
c(4, 3)),
loadings = loadings,
alpha = .05, beta = .05)
# Determine required N to detect that the indirect effect
# in group 1 (of .2 * .3 = .09) differs from the indirect effect
# in group 2 (of .3 * .5 = .15).
# The direct effect of X on Y is .25 in both groups.
# The model is based on observed variables only (Lambda = diag(3))
# Both groups are sized equally (N = list(1, 1)).
powerMed <- semPower.powerMediation(type = 'a-priori',
nullEffect = 'indA = indB',
bYX = list(.25, .25),
bMX = list(.2, .3),
bYM = list(.3, .5),
Lambda = diag(3),
alpha = .05, beta = .05, N = list(1, 1))
# same as above, but specifying Beta
Beta1 <- matrix(c(
c(.00, .00, .00), # X
c(.20, .00, .00), # M
c(.25, .30, .00) # Y
), byrow = TRUE, ncol = 3)
Beta2 <- matrix(c(
c(.00, .00, .00), # X
c(.30, .00, .00), # M
c(.25, .50, .00) # Y
), byrow = TRUE, ncol = 3)
powerMed <- semPower.powerMediation(type = 'a-priori',
nullEffect = 'indA = indB',
Beta = list(Beta1, Beta2),
indirect = list(c(2, 1), c(3, 2)),
Lambda = diag(3),
alpha = .05, beta = .05, N = list(1, 1))
# request a simulated post-hoc power analysis with 500 replications.
set.seed(300121)
powerMed <- semPower.powerMediation(type = 'post-hoc',
bYX = .25, bMX = .3, bYM = .4,
nIndicator = c(3, 5, 4),
loadM = c(.5, .6, .7),
alpha = .05, N = 500,
simulatedPower = TRUE,
simOptions = list(nReplications = 500))
## End(Not run)