You are here

OSMASEM Questions

7 posts / 0 new
Last post
Laurent B's picture
Offline
Joined: 04/02/2019 - 12:05
OSMASEM Questions

Dear Mike Cheung,

I am not a statistician and a beginner in meta-analysis. I'm struggling to perform an OSMASEM using the metaSEM r package. And I have a few questions.
1) I am not sure if the rate of missing data is not too high for some parameters and consequently if the results are reliable (and thus, if this research is publishable or not). Any suggestion if the rate of missing data is too high?
2) I hope I don't make any mistakes in my script and that I correctly performed the OSMASEM.
3) I use a categorical moderator. Is it appropriate to standardize this moderator? I think you wrote that moderator standardization improves numerical stability. should one not use standardization for continuous moderating variables only?
4) I have a moderating categorical variable (event valence) with two categories: "failure" vs "others" respectively coded -1 and 1.
The results of the OSMASEM with the moderator give several matrices. Is it right that:
A0 matrix gives betas for the model for the mean value of the moderator which may be meaningless (e.g., gender coded male -1 and female 1).
A1 matrix gives betas for the moderator effects on the parameters.
A0-A1 matrix gives in our case betas for the -1 ("failure") value of the moderator (-1 SD for continuous moderators)
A0+A1 matrix gives in our case betas for the +1 ("success") value of the moderator (+1 SD for continuous moderators)
5) I'm not sure why R2 can be higher than zero for a parameter (correlation) on which the moderator effect was not significant.
6) Imagine that I have a categorical moderator with three categories A, B and C coded 0, 1, and 2, respectively. Regarding the significance of the difference between the three categories, the OSMASEM with moderator tests the A category coded 0 versus the other two categories (B and C coded 1 and 2, respectively). Is it pertinent to change the code in order to test each category versus the other two? For example, with the same previous three categories A, B and C changing the code from 0, 1, and 2 to 1, 0, and 2 in order to test the difference between the category B (coded 0) versus the two others (A & C coded 1 and 2). I hope this last question is understandable.

Best regards,

L. B.

Mike Cheung's picture
Offline
Joined: 10/08/2009 - 22:37
Dear L. B.,

Dear L. B.,

1) Studies in TSSEM and OSMASEM are treated as if they are subjects in conventional SEM. It seems reasonable to apply traditional views on missing data here. You may get a better perspective on how the missing data patterns are with the following R code.

library(VIM)
aggr(my.df$data[, 1:28])

2) I have not checked the script in detail. It seems that the first few models work.

3) and 4) The inclusion of moderators is similar to what we do in testing the cross-level interaction in multilevel models. If you have a binary moderator, I do not understand why it is standardized. You may use one of the two options:
a. A0 (intercept) + A1 (0 or 1 indicator for one group). A0 and A1 represent the reference group and the difference between them.
b. A0 (all 0s) + A1 (0 or 1 indicator for one group) + A2 (0 or 1 indicator for another group). A1 and A2 represent the two groups.

If your moderator is a continuous variable, you may center (or standardize) it first. Then,
A0 is the estimated coefficients when the moderator is the average.
A1 is the estimated coefficients when the moderator increases 1 unit.
To make it easier for the interpretations, you may calculate the SD of your moderator, say sd.
Then you may calculate A0 – 1sdA1 and A1 + 1sdA1.

5) Unlike the concept in regression analysis, the idea of R2 in meta-analysis is similar to that in multilevel models. The R2 can be larger than 1 in meta-analysis and multilevel models. The presence of missing data in the meta-analysis may make the estimated R2 behaving even worse.

6) If you have a categorical variable with three levels, you should not treat it as 0, 1, and 2. You may create two dummy codes.

Best,
Mike

canavati's picture
Offline
Joined: 12/01/2018 - 23:51
Moderation/Interaction Effects in OSMASEM

Interesting. Thanks for providing such helpful software free of charge and providing such extensive documentation and examples of how to use it.

If I may build on your answer to #3 and #4 above: I had also suspected that we could use OSMASEM to perform tests similar to tests of interaction between two independent variables in hierarchical models. I know that in TSSEM we don't use the means, but studies tend to report the means and standard deviations of variables, oftentimes in the table with descriptive statistics about their data (which often is also where the correlations are reported). Since each study in the meta-analysis in OSMASEM is modeled akin to subjects in traditional SEM, can the standardized mean values of variables reported in a study be used to test interaction since interaction and moderation are the same as moderation = interaction? (https://books.google.com/books?id=fAnSOgbdFXIC&lr=) If interaction can be defined as when the correlation between X and Y is also a function of another exogenous variable say W, then can testing moderating effects of the mean of W in each study on the path from X to Y serve as a test similar to tests of interaction in hierarchical models?

Thanks so much for the clarification

Mike Cheung's picture
Offline
Joined: 10/08/2009 - 22:37
Hi Sergio,

Hi Sergio,

I think that it may be possible to include interaction terms. But this is not possible in the current osmasem function. You may use OpenMx to customize your models. Moreover, I anticipate that there may be more technical issues when there are interactions.

Best,
Mike

pradeepbhr's picture
Offline
Joined: 07/05/2021 - 13:08
Moderation analysis in OSMASEM

Dear Mike Cheung,

Suppose we have two categorical variables like "Culture" (Western Vs Non-western) and "Product type" (A, B, C, D) which have a moderating effect on the technology adoption model like UTAUT. One wants to perform moderation analysis using OSMASEM. I want to know one should check moderation analysis of individual relations one by one i.e. moderating effect of culture on the relation PEOU-BI, then moderating effect of culture on the relation SN-BI and then moderating effect of culture on the relation PU-BI based on the theoretical background of moderation effect on specific relation or check the moderation analysis at a time on all relation i.e. moderation effect of culture on all the relations PU-BI, PEOU-BI, PEOU-PU, SN-BI, FC-BI, FC-UB, and BI-UB at a time. Secondly, can I take 1,2,3 and 4 for the "product type" variable to perform moderation analysis?

Mike Cheung's picture
Offline
Joined: 10/08/2009 - 22:37
Dear Pradeep,

Dear Pradeep,

There may be better ways to do it. One approach is to test whether all the paths are statistically significant as a whole. If yes, then we can try the individual path one at a time.

When there are more than 2 levels, you may create dummy variables to represent them.

Mike

pradeepbhr's picture
Offline
Joined: 07/05/2021 - 13:08
Dear Professor,

Dear Professor,

Thank you for your time and valuable information.