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

Hi!

I was attempting a question where the dataset was paired dataset about time taken by patients to fall asleep before and after taking a sleeping pill. I used the procedure proc ttest to do a hypothesis testing on the data. But it is required to use a 90% Confidence Interval and by default in SAS, it is 95%. So, how can I change the CI to 90%?

Thanks in advance.

Regards,

Arunabh (A novice in SAS)

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
proc ttest data=sashelp.class alpha=0.1;
class sex;
var weight;
run;

View solution in original post

3 REPLIES 3
Ksharp
Super User
proc ttest data=sashelp.class alpha=0.1;
class sex;
var weight;
run;
arunabh21
Calcite | Level 5

Thank you so much! 🙂 

Reeza
Super User

In addition to the ALPHA option, review the SIDES option. 

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
  • 3 replies
  • 3641 views
  • 2 likes
  • 3 in conversation