Dear All:
steve
Hi Steve,
ODS trace on;
ods output ParameterEstimates=a****User defined output dataset name;
ods output oddsratios=b****User defined output dataset name;
proc surveylogistic data =have;
strata STRATUM;
weight WEIGHT;
class x1(param=ref ref = "1") x2(param=ref ref = "1") x3(param=ref ref = "1") x4(param=ref ref = "1") x5(param=ref ref = "1") x6(param=ref ref = "1") x7(param=ref ref = "1") x8(param=ref ref = "1") x9(param=ref ref = "1") x10(param=ref ref = "2");
model Y (event='1') = x1 x2 x3 x4 x5 x6 x7 x8 x9 x10 x11 x12 x13 x14 x15;
run;
ODS output off;
ODS trace off;
Check newly created datasets a, b. You will find Wald statistics.
Best Regards,
Sri.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.