BookmarkSubscribeRSS Feed
robertrao
Quartz | Level 8


hi,

For ex i have 4 records in a dataset.

data demog;

set have;

run;

Have dataset has these 4 records

name  age 

kevin   23

peter   28

louis   33

...

...

...

first the Input buffer is set blank or missing accordingly.

it reads the first observation writes to the dataset

It then goes to the beginning of the datastep. NOW  how will SAS know  that it has already read the first one AFTER RETURNING TO THE BEGINNING OF THE DATA STEP????

Could someone tell me the process how it works??????

2 REPLIES 2
robertrao
Quartz | Level 8

Sorry about that,,,I went back to my Basics and learnt that it is because of the _n_=

Tom
Super User Tom
Super User

Try running this little step to see how it works in more detail.

data new;

  put 'BEFORE ' _n_= age= eof=;

  set have end=eof ;

  put 'AFTER  ' _n_= age= eof=;

run;

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 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 747 views
  • 0 likes
  • 2 in conversation