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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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