first, is it possible to use the -mediate- command when there is more than one mediator as in: predictor --> mediator 1 --> mediator 2 --> outcome (i.e., the mediators are not parallel)? second, if the above is not possible, I know I can turn to SEM for this but I'm not sure how get the results from "estat teffects" and from "estat ic" into a comparative table (my client wants to compare several possible mediators for an outcome and where the initial predictor is always the same); can I do this using -etable-? or do I need to go to -collect-? regardless is there a tutorial or FAQ on this using SEM? I am not providing data here but it is easy to envision using the auto data as in: foreign --> mpg --> headroom -->price and foreign --> weight --> trunk --> price and foreign --> mpg --> trunk --> price the above may not be sufficiently clear so here is the code for the first of the models above
Code:
sem (foreign -> mpg, ) (foreign -> price, ) (mpg -> headroom, ) (mpg -> price,) (headroom -> price, ), nocapslatent
Code:
estat teffects estat ic
Comment