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: Save the Date

 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!

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
  • 2 replies
  • 995 views
  • 1 like
  • 3 in conversation