Dear all,
Nice to meet you all.
Recently, I met a problem in the estimation of logistic regression.
After running the logistic regression, the estimated coefficients are obtained. However, they are the coefficients of the log odds ratio. May I know is there any codes for finding out the marginal effects.
I have also attached my code here for your reference.
proc logistic data=edu2016;
class Ethnicity Age Gender / param=ref ref=first;
model PrimaryCompleted/Total = Ethnicity Age Gender Ethnicity*Age Ethnicity*Gender Age*Gender/ lackfit;
run;
Thank you very much for your help.