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??????
Sorry about that,,,I went back to my Basics and learnt that it is because of the _n_=
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;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.