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)
proc ttest data=sashelp.class alpha=0.1;
class sex;
var weight;
run;
proc ttest data=sashelp.class alpha=0.1;
class sex;
var weight;
run;
Thank you so much! 🙂
In addition to the ALPHA option, review the SIDES option.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.