BookmarkSubscribeRSS Feed
Varun
Calcite | Level 5

I have this SAS sample code:

data BEFORE;

    input v1 v2;

datalines;

1 2

;

data AFTER;

    put 'Before IF: ' _ALL_;

    if _N_ = 1 then set BEFORE;

    put 'After  IF : ' _ALL_;

run;

The output is:

BEFORE: v1=. v2=. _ERROR_=0 _N_=1

AFTER : v1=1 v2=2 _ERROR_=0 _N_=1

BEFORE: v1=1 v2=2 _ERROR_=0 _N_=2

AFTER : v1=1 v2=2 _ERROR_=0 _N_=2

And the output file contains:

Obs    v1    v2

1      1     2

2      1     2

I would like to understand why two observations set in the new dataset with repeated values. Please clerify.

2 REPLIES 2
Hima
Obsidian | Level 7

The reason why it's appearing twice is because of the below code

if _N_ = 1 then set BEFORE; 

This step copies the results from before and pastes it After data set.

    put 'After  IF : ' _ALL_;

_ALL_ does the same but it copies the results from AFTER and pastes it again.

Fix to the code would be

data BEFORE;
input v1 v2;
datalines;
1 2
;


data AFTER;
put 'Before IF: ' _ALL_;
set BEFORE;
put 'After  IF : ' _ALL_;
;
run;

proc print; run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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