Thanks for the replies. Another helpful reply that I got from David Schlotzhauer at SAS is to use the default option for units. This results in all variables being given an estimate. proc logistic desc data = _temp_; class cat1 cat2; model outcome = cont1 cat1 cat2 cont2 /clodds=pl; units cont1 = 20 / default=1; run;
... View more