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
Opal | Level 21

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
Opal | Level 21

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
Opal | Level 21

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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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