BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Can anyone explain why output from proc surveymeans can result in a ratio, when added to the confidence interval, exceeds 100% ? i.e., 97.0±10.8=107.8

Ratio=0.970
Standard Error=0.055
Confidence Interval=(1.96)*(Standard Error)=1.96*0.055=0.108

Code:

proc surveymeans data=la ratio nobs;
by race_eth;
var d24u
strata frame;
cluster sridnum;
weight weight;
ratio d24u students;
ods output ratio=laoutput;
run;

Log:

NOTE: The BY statement provides completely separate analyses of the BY groups. It does not provide a statistically valid subpopulation or domain analysis, where the total number of units in the subpopulation is not known with certainty. If you want a domain analysis, you should use the DOMAIN statement.

NOTE: Only one cluster in a stratum for variable(s) d24u, students. The estimate of variance for d24u, students will omit this stratum.
Only one cluster in a stratum for ratio(s) d24u/students. The estimate of variance for d24u/students, will omit this stratum.
NOTE: The above message was for the following by-group:
race_eth=Bl


Thanks.
2 REPLIES 2
deleted_user
Not applicable
The short answer is because you are attempting to interpret it that way.

How you should interpret it is that you need to go as low as 86.2 to have that confidence but common sense (or your own constraint) tells you not to go above 100. But confidence interval formulation doesn't know intrinsically that the ratio can't go above 100, that is your own interpretation/constraint.

If you want to impose that then report it as:

97.0{+3.0/-10.8}

You can't expect the calculation to understand arbitrary constraints.

Ike
deleted_user
Not applicable
Thanks Ike.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 902 views
  • 0 likes
  • 1 in conversation