🔒 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 11-29-2012 01:36 AM
(988 views)
Q.A researcher is interested in the difference between males and females with regards to burnout level. He believes that he can obtain all necessary information using a t-test and regression with a discrete predictor.
I just use this code:
proc ttest data = data;
class gender;
var burnout;
run;
Thanks,
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Since it is not paired data, I will use class. And also try to Wilcoxon test which is an alternative non-parameter method for t-test .
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Since it is not paired data, I will use class. And also try to Wilcoxon test which is an alternative non-parameter method for t-test .
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I think it is a typical 2-sample independant T-TEST case. CLASS will be used.