BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
KafeelBasha
Quartz | Level 8

Hello

 

How confidence intervals are used to decide significant and insignificant variables in regression analysis?

 

Can I get an example?.

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

It depends on the parameter that you are estimating. If you are estimating an odds ratio, then the OR is not significant if the CI contains 1. See the article on "Odds ratio plots" for an example.

View solution in original post

4 REPLIES 4
Reeza
Super User

Confidence intervals are a function of a confidence level, usually denoted alpha. Ie 95% is (100-alpha) 

This is then equivalent to comparing the pvalue to the alpha level. 

 

Confidence intervals are easy to denote significance in some cases, not all. 

If the expected value is 0 or 1 then you can see if the interval contains that value. But in a linear regression there isn't necessarily some easily known value to compare to. 

Rick_SAS
SAS Super FREQ

I assume you are asking about confidence intervals for the regression coefficients in OLS regression.  If a parameter estimate is small, you might as k whether it is significantly different from  zero. If the  CI for the parameter contains zero, then the parameter estimate is not significantly different from zero.

 

For example, the PROC REG documentation uses the Fitness data set. If you analyze it like this

 

ods select parameterestimates;
proc reg data=fitness plots=none;
model Oxygen=Age Weight RunTime RunPulse RestPulse MaxPulse / clb;
quit;

 

you see that the parameters that have large p-values also have CIs that contain zero.

KafeelBasha
Quartz | Level 8

Yes, what if CI contains 1.

 

Thanks 

Rick_SAS
SAS Super FREQ

It depends on the parameter that you are estimating. If you are estimating an odds ratio, then the OR is not significant if the CI contains 1. See the article on "Odds ratio plots" for an example.

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 ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1639 views
  • 3 likes
  • 3 in conversation