BookmarkSubscribeRSS Feed
souji
Obsidian | Level 7

Hi

 

In which instant I can use BY or CLASS in the Proc Means procedure

 

 in SAS prep guide, Scenario 7, they asked to:

 

Use PROC MEANS to calculate the mean and standard deviation for the variables AvgHighTemp and AvgLowTemp by the new Month variable.

 

In the code they use CLASS instead of BY

 

Q: How do I know when to use CLASS or BY, Please help me to understand

 

data work.scenario7;

set cert.temp18;

format Day date9.;

Month=month(day);

run;

proc freq data=work.scenario7;

tables HighTemp;

run;

proc means data=work.scenario7; 

class month;

var AvgLowTemp AvgHighTemp;

run;

 

 

1 REPLY 1
unison
Lapis Lazuli | Level 10
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
  • 1 reply
  • 1014 views
  • 1 like
  • 2 in conversation