🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-23-2017 09:47 AM
(4386 views)
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc ttest data=sashelp.class alpha=0.1;
class sex;
var weight;
run;
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
proc ttest data=sashelp.class alpha=0.1;
class sex;
var weight;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much! 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
In addition to the ALPHA option, review the SIDES option.