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,
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 .
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 .
I think it is a typical 2-sample independant T-TEST case. CLASS will be used.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.