BookmarkSubscribeRSS Feed
sanyam13
Fluorite | Level 6

one

x   y   z

1  A  27

1  A  33

1  B  45

2  A  52

2  B  69

3  B  70

4  A  82

4  C  91

 

data two ;

set one;

by x y;

if first.y;

run;

 

proc print data = two noobs;

run;

 

can somebody plz explain exactly what we are doing in this program and why i m getting this output 

 

x  y  z

1 A  27

1 B  45

2 A  52

2 B  69

3 B  70

4 A  82

4 C  91

2 REPLIES 2
EEng
Obsidian | Level 7

Not exactly sure what you want to have, but you are outputting the first record in var "y"

 

ballardw
Super User

@sanyam13 wrote:

one

x   y   z

1  A  27

1  A  33

1  B  45

2  A  52

2  B  69

3  B  70

4  A  82

4  C  91

 

data two ;

set one;

by x y;

if first.y;

run;

 

proc print data = two noobs;

run;

 

can somebody plz explain exactly what we are doing in this program and why i m getting this output 

 

x  y  z

1 A  27

1 B  45

2 A  52

2 B  69

3 B  70

4 A  82

4 C  91


The "If first.y;" statement says to keep the record only for the first of each group of y values for each X group.

Note that the 1 A 33 is not in the output as it is the second value of A for variable Y where X is 1.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 970 views
  • 1 like
  • 3 in conversation