I have the following model
where
After running this, I found the slopes are too small to be interpretable, so I would like to change the units of time to be years rather than months. Is there a way to do this without creating a new time variable and rerunning the model?
Code:
glm LOS c.time##i.group, f(gam) l(log)
- LOS is continuous, skewed right
- time is continuous in months.
- group is categorical taking on values 1, 2, 3.
Code:
margins, dydx(time) at(group=(1,2,3))

Comment