Hi, I'm a beginner with SAS and hoping someone can help simplify what I need to do to get confidence intervals for my categorical data. I have 3 variables (a, b, c) and counts (33, 18, 132) of how many people belong to each category. I'm trying to figure out how to get the confidence intervals for each proportion. I've done some research and tried grasping the concepts presented here: https://blogs.sas.com/content/iml/2017/02/15/confidence-intervals-multinomial-proportions.html https://communities.sas.com/t5/Statistical-Procedures/95-CONFIDENCE-INTERVALS-for-categorical-variables/td-p/504954 And I'm getting no where since I don't know how to take the proposed codes and apply them to my data appropriately. If someone can help me with a simple code/an explanation on what to add after these primary lines: data a; input category count; datalines; a 33 b 18 c 133 ; I'd really appreciate any help I can get. I also found plenty of help for binomial proportions... which seems alot easier... but doesn't really apply here I don't think. Thanks so much!
... View more