Quantcast
Channel: Statistics Help @ Talk Stats Forum - SAS
Viewing all articles
Browse latest Browse all 310

Test statement in Proc Logistic

$
0
0
I'm not very familiar with the test statement in proc logistic, it seems straight forward but I keep receiving an error message. For example, for the test statement

Code:

proc logistic data=data;
class y var1 var2 var3 var4;
model y=var1 var2 var3 var4 var5;
test: test var1=0, var2=0;
run;

I receive an error in the log saying that var1 and var2 are not parameters in the model. But I'm not sure why I'm receiving this error since they are clearly included in the model.

Viewing all articles
Browse latest Browse all 310

Trending Articles