BookmarkSubscribeRSS Feed
Nnamino
Calcite | Level 5

I need help on this class assignment before 25th October. Thanks

6 REPLIES 6
Nnamino
Calcite | Level 5

Hello,

Please i need help on my class work. 

 

Thanks

PeterClemmensen
Tourmaline | Level 20

@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 🙂

Nnamino
Calcite | Level 5

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;

PeterClemmensen
Tourmaline | Level 20

No Worries, just wanted to make sure you try on your own first 🙂

 

I'll take a look at it

Kurt_Bremser
Super User
  • Do not double-post
  • Do not use attachments, unless absolutely necessary
  • Avoid using Office files, many organizations using SAS firewall them because of security risks

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.

Nnamino
Calcite | Level 5

Noted. Thanks so much

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 6 replies
  • 1784 views
  • 0 likes
  • 3 in conversation