I need help on this class assignment before 25th October. Thanks
Hello,
Please i need help on my class work.
Thanks
@Nnamino You will have zero luck posting an assignment directly here and expect someone to solve it for you.
Give it your best shot yourself before. When you run into specific problems, you can post them here.
To give you a big hint to most of the problems in your assignment (I did look at it), most of the problems can be solved with out-of-the-box SAS/STAT procedures such as Proc Means / Proc GLM and so on. Google your way to find examples of comparing means of two groups etc.
Best of luck, and I will be happy to help you on specific problems that you gave a shot yourself first 🙂
lol. I have, i dont know if am correct, just wanted to compare. The codes below are what i use for the first one. I am new to SAS. Thanks
1A1.
proc means data=mydata.calls maxdec = 2 mean std;
var duration;
Cls period;
run;
1C1.
proc ttest data=mydata.calls;
var duration;
class period;
run;
1C3.
proc means data=mydata.calls maxdec = 2 n mean clm;
var duration;
class period;
run;
No Worries, just wanted to make sure you try on your own first 🙂
I'll take a look at it
Post your question as text, present example data in usable form (data step with datalines, posted in a code box), and show what you already tried.
Noted. Thanks so much
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.