BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
emmad511
Fluorite | Level 6

I need to run an ANOVA procedure by team for NBA players’ salaries with means for team and scheffe bon. I'm not quite sure about what this question is asking for. Do I need a proc means step first?

The original data has two variables, one is Tm(team) and the other is salary. My current code is as followed. Thanks in advance!

title "NBA Salary ANOVA by Team";
ods graphics on;
PROC glm DATA=NBA2;
  class Tm salary;
  by Tm;
  Model salary = Tm;
  means Tm / Scheffe;
  means Tm / Bon;
run;
ods graphics off;
title;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
Should be :

PROC glm DATA=NBA2;
class Tm ;
Model salary = Tm/solution;
lsmeans Tm/adjust=bon;
quit;

View solution in original post

2 REPLIES 2
Ksharp
Super User
Should be :

PROC glm DATA=NBA2;
class Tm ;
Model salary = Tm/solution;
lsmeans Tm/adjust=bon;
quit;
emmad511
Fluorite | Level 6

Thank you so much!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 577 views
  • 2 likes
  • 2 in conversation