- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-13-2020 03:53 PM
(1023 views)
I am trying to figure out if I can have my proc freq output include confidence intervals. Below is one of the things I tried, but either I am doing it wrong or maybe it can't be done with proc freq? Any help would be great. Thank you
proc freq data=two;
tables cname*agegroup / CL=LOGIT;
run;
5 REPLIES 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Confidence intervals of what statistic?
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Of the percentage of cname in an agegroup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use the BINOMIAL option of the TABLES statement.
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I don't know the syntax of how to do that. Can you show me an example of how to write that statement?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
tables cname*agegroup / binomial;
--
Paige Miller
Paige Miller