Hi,
I am trying to understand how to correctly calculate f2 to measure the size of the effect of an exogenous construct on an endogenous one. More specifically, I am interested in calculating f2 to measure the size of the effect of A on B when there are both direct and indirect effects. That is:
A -> B
A -> C -> B
The theory says that:
f2 = (R2_inc - R2_exc)/(1 - R2_inc)
where, R2_inc is B's R2 when A is included in the model, and R2_exc is B's R2 when A is not included in the model.
In most places where f2 is discussed, they mention one needs to estimate the structural model twice, once with and once without the A, to calculate f2. However, in [1] the authors say that when manually computing the f2 values by estimating the model with and without a latent variable, the model changes and, thus, the latent variable scores. As a result the resulting f2 is not completely correct. To avoid this problem, the authors say that SmartPLS 3 uses the latent variable scores of the model that includes all latent variables and then internally excludes latent variables to obtain the R2_exc.
So...
1) Is it ok to estimate the model twice? In that case, to measure R2_exc, would the model just be C->B in my case?
2) If model modification is an important issue [1], what is the right way to replicate SmartPLS3's approach? Using R, would the following be right?
Given matrices F and P for the whole model, where
F: n x m matrix containing the factor scores for each of the data samples (where n is the number of data samples and m is the number of latent variables)
P: m x m matrix containing the standardized path coefficients
we can obtain
R2_inc = colVars( F %*% P) / colVars(F)
To calculate R2_exc, we can just eliminate the exogenous latent variable as follows:
P[i, ] <- 0
P[ ,i] <- 0
F[ ,i] <- 0
where "i" is the index of the exogenous latent variable. We can then calculate R2 as usual.
Cheers,
Nicholas
[1] Hair Jr., Joseph F.; G. Tomas M. Hult; Christian M. Ringle; Marko Sarstedt. A Primer on Partial Least Squares Structural Equation Modeling (PLS-SEM), 2016, 2nd ed., SAGE Publications.