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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 3 replies
  • 1131 views
  • 2 likes
  • 2 in conversation