BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

How do I print only the first and the last observations of a dataset using the proc print?

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

You can't.  You have to create a data set (or a view) containing the first and last observation.  Luckily, that is not so difficult:

 

data want;

do _n_=1, _nobs_;

   set have nobs=_nobs_ point=_n_;

   output;

end;

stop;

run;

View solution in original post

3 REPLIES 3
Astounding
PROC Star

You can't.  You have to create a data set (or a view) containing the first and last observation.  Luckily, that is not so difficult:

 

data want;

do _n_=1, _nobs_;

   set have nobs=_nobs_ point=_n_;

   output;

end;

stop;

run;

SamuelRajKandru
Quartz | Level 8

Can you please explain me how this code works?

Astounding
PROC Star

Here's how the pieces interact.

 

The NOBS= option on the SET statement creates a temporary variable, holding the number of observations in the data set.

 

Normally, the SET statement starts at the beginning of the data set and reads the next observation every time.  The POINT= option changes that, reading the observation designated by the POINT= variable.

 

The OUTPUT statement outputs the current observation, without waiting for later DATA step processing to occur.

 

The STOP statement halts the DATA step, to prevent looping that would read the same observatiosn over and over again.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1353 views
  • 2 likes
  • 2 in conversation