Hello, I'm handling the same problem recently. Since the outcome variable is not rare, the log link was suggested in SAS help. I've read these solutions you suggested, but as you can see, I've no reason to reduce those covariates, and there is no interaction option initially, so what else can I do to treat this problem, or if I can ignore the warnings? code is as follows: proc casusalmed data=data all; class X(ref=first) M(ref=last) Y(ref=first) C(ref=first); model Y=X M /link=log; mediator M=X; covar c; run;
... View more