I would like to apply lavaan to analyse binary outcome data and I have two additional questions:
1) In logit and probit models, crude coefficients and adjusted coefficients for confounding effects can differ not only because of confounding but also because of a rescaling of the model. As such, logit or probit coefficients from different nested models are not measured on the same scale and are therefore not directly comparable.
Yet, it seems that it is what is done when one compares direct and indirect effects in sem interpretation. So my question is how much this statistical consideration invalidates the interpretation of direct vs. indirect relationships when some outcome variables are binary in a sem analysis.
2) In the case of multivariable logit (or probit) regressions, Karlson and colleagues (2012 doi: 10.1177/0081175012444861 Sociological Methodology August 2012 vol. 42 no. 1 286-313. Comparing Regression Coefficients Between Same-sample Nested Models Using Logit and Probit A New Method) develop a new method that gives unbiased comparisons of logit (or probit) coefficients of the same variable (x) across same-sample nested models successively including control variables (z).
Could such adjustments be made in lavaan?
(I noticed that the authors produced a STATA scripts and no R scripts).
many thanks in advance for your help.Well, you can do this yourself manually. Choose values for the
predictors (usually, for continuous predictors, we take the mean, for
categorical predictors, we take the most common category). Compute the
probit value (simply apply the regression formula), and transform to a
probability by using pnorm(). Next, you change the value of a single
predictor (say, from 10 to 11), while keeping all others predictors at
the same value. Compute the new probit value, and transform to a
probablity again.
> I would like to apply lavaan to analyse binary outcome data and I have
> two additional questions:
>
> 1)In logit and probit models, crude coefficients and adjusted
> coefficients for confounding effects can differ not only because of
> confounding but also because of a rescaling of the model. As such, logit
> or probit coefficients from different nested models are not measured on
> the same scale and are therefore not directly comparable.
So far, so good.
> Yet, it seems that it is what is done when one compares direct and
> indirect effects in sem interpretation.
But they are in the same model? I believe your concern, and the one
voiced by this paper:
Karlson and colleagues (2012 doi: 10.1177/0081175012444861Sociological Methodology August 2012 vol. 42 no. 1 286-313.
only applies if you fit different nested models. Or are you referring to
comparing 'c' versus 'c-prime'? Ie comparing the effect of X on Y in a
model without a mediator, versus the effect of X on Y in a model
including a mediator?