- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 01-20-2017 07:27 AM
(1725 views)
Hello,
I have been analysing a survey with Proc Surveyfreq.
I am intrested in obtaing the ChiSq. But when there is miisng responses the ChiSq is not calculated.
Any ideas how i can manage this in the code.
For example i am using hte code:
proc surveyfreq data=VOC.A07_test_Q31 ;
tables age*Q29 /cl nowt CHISQ;
strata Group_ACE;
weight Weight_ACE;
run;
I would like something genral as i need to analyse lots of questions.
thnak you
Bernarda
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You could use the MISSING option on the Proc Surveyselect statement to treat missing values as a level for the variable.