Hello, I need to give statistics for two groups (1 or 0) of one of my variable.
I have to use proc means but I don't know how to seperate groups of my variable ?
Proc means data=mydata;
VAR min
WHERE is_member=1;
run;
Are you looking for a class statement?
class groups;
VAR min;
I think CLASS is the right tool but the program would be even simpler:
proc means data=mydata;
class is_member;
var min;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest 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.