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;
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!
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.