I am new with sas and I'm doing logistic regression with several predictive variables. I am using the following code;
proc surveyselect data=subset method=urs samprate=1 rep=1000 out=boot;
run;
proc logistic data=boot outest=estimates ;
model uq7_maxabin(event='1')= uq7_base v6500 px_95_vol age bladder_length;
freq numberhits;
by replicate;
run;
proc means data=estimates n mean std stderr uclm lclm;
var intercept uq7_base v6500 px_95_vol age bladder_length;
title 'bootstrap results';
run;
Question is: How do I get the p-value?
proc surveyselect data=subset method=urs samprate=1 rep=1000 out=boot;
run;
proc logistic data=boot outest=estimates ;
model uq7_maxabin(event='1')= uq7_base v6500 px_95_vol age bladder_length;
freq numberhits;
by replicate;
run;
proc means data=estimates n mean std stderr uclm lclm;
var intercept uq7_base v6500 px_95_vol age bladder_length;
title 'bootstrap results';
run;
Question is: How do I get the p-value?