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