I'm estimating odds ratio between m_pattern (three categories) and c_pattern (three categories) with the following code. I found macro for logistics regression with ordinal outcomes, but I failed to find macro for outcomes with more than two categories. I wonder if there are macro for batch analysis and auto OR table ouput? proc logistic data=diet.dietary;
class
m_pattern2 (param=ref ref="1");
model c_pattern2 (ref="1")=m_pattern2 /link=glogit rl cl;
run;
... View more