Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Working with Time Series Data

Using SAS Data Set Options

You can use the OBS= and FIRSTOBS= data set options to subset the input data set.

(These options cannot be used in conjunction with the WHERE statement.) For example, the following statements print observations 20 through 25 of the data set FULL.

   proc print data=full(firstobs=20 obs=25);
   run;

You can use KEEP= and DROP= data set options to exclude variables from the input data set. Refer to SAS Language: Reference for information on SAS data set options.

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.