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: 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 25. 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
  • 3 replies
  • 1276 views
  • 2 likes
  • 2 in conversation