BookmarkSubscribeRSS Feed
wang
Calcite | Level 5

how to use 'where' in proc univariate, can you give me an example?  thank you !

2 REPLIES 2
AncaTilea
Pyrite | Level 9

Like this:

proc univariate data = sashelp.class;

     where sex = "F";

     var age;

     histogram age;

run;

OR:

proc univariate data = sashelp.class;

     where weight > 100;

     var age;

     histogram age;

run;

Smiley Happy

PGStats
Opal | Level 21

Or this :

proc univariate data = sashelp.class(where = (sex = "F"));

     var age;

     histogram age;

run;

PG

PG

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 3335 views
  • 2 likes
  • 3 in conversation