in Software Defined Networking by
How to print observations 5 through 10 from a data set?

1 Answer

0 votes
by

The FIRSTOBS= and OBS=data set options would tell SAS to print observations 5 through 10 from the data set READIN.

proc print data = readin (firstobs=5 obs=10);

run;

...