Hello everyone,
I wanted to ask one question regarding a logistic regression model I am fitting in Stata 17. My model is as follows:
where overreport_dummy is a dummy variable with two values 0 and 1. The same for variables empathy and specific.
Below are the results I obtained.

The p-value of the interaction term is 0.083, and I am interested in further examining the effects of empathy at each level/value of specific. So I used the following command:
The results are as follows:

My question: is there a way in Stata to test whether the effect of empathy on each level of specific is significant or not? For example, when specific = 1, how to know if the odds ratio is significantly different between when empathy = 1 and when empathy = 0?
Since I don't have a main effect of empathy or specific, I really want to be careful when I interpret my data. Thank you very much for your help and time!
I wanted to ask one question regarding a logistic regression model I am fitting in Stata 17. My model is as follows:
Code:
logistic overreport_dummy i.empathy i.specific i.specific#i.empathy, robust
Below are the results I obtained.
The p-value of the interaction term is 0.083, and I am interested in further examining the effects of empathy at each level/value of specific. So I used the following command:
Code:
margins specific#empathy, atmeans
My question: is there a way in Stata to test whether the effect of empathy on each level of specific is significant or not? For example, when specific = 1, how to know if the odds ratio is significantly different between when empathy = 1 and when empathy = 0?
Since I don't have a main effect of empathy or specific, I really want to be careful when I interpret my data. Thank you very much for your help and time!
Comment