BookmarkSubscribeRSS Feed
pchen002
Obsidian | Level 7

 

Given the SAS data set ONE:
ONE
XYZ
1 A 27
1A 33
1B 45
2A 52
2B 69
3B 70
4A 82
4C 91
The following SAS program is submiitted:
data two;
set one;
by x y;
if first.y;
run;
proc print data =two noobs;
run;
 
Hi I have tried to read this data into SAS however realising only the row "1A 33" is missing in the output data, why is it so?
2 REPLIES 2
Astounding
PROC Star

Here's a program you can run, to try to understand why:

 

data two;

set one;

by x y;

f_x = first.x;

f_y = first.y;

l_x = last.x;

l_y = last.y;

run;

proc print data=two;

run;

ballardw
Super User

How many combinations of X and Y in your data are duplicated?

 

Or do you find it easier to identify X an Y combinations that are unique?

 

How do they compare to the X Y combination that did not appear in the output?

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 1574 views
  • 0 likes
  • 3 in conversation