Valid in: | Configuration file, SAS invocation, OPTIONS statement, SAS System Options window |
Category: | Files: SAS Files |
PROC OPTIONS GROUP= | SASFILES |
Interaction: | When you specify the OBS= option and EXTENDOBSCOUNTER=YES is set either as a data set option or as a LIBNAME option, data sets that have 2G–1 observations or more might perform better in a 32-bit environment. For more information, see Extending the Observation Count in a SAS Data File in SAS Language Reference: Concepts. |
Note: | This option can be restricted by a site administrator. For more information, see Restricted Options. |
See: | OBS System Option: UNIX in SAS Companion for UNIX Environments OBS System Option: Windows in SAS Companion for Windows |
20
specifies 20
observations or records, while a value of 3m
specifies 3,145,728 observations or records.
0F8x
in order to specify the decimal equivalent of
248. The value 2dx
specifies the decimal
equivalent of 45.
(12 - 2) +
1 = 11
. The result of OBS= in this situation appears
to be the observation number that SAS processes last, because the
output starts with observation 2, and ends with observation 12, but
this result is only a coincidence.
(10 - 1) + 1 =
10
. Note that with WHERE processing, SAS first subsets
the data and then SAS applies OBS= to the subset.
(10 - 2) + 1 = 9
. OBS= in this situation is neither
the observation number to end with nor how many observations to process;
the value is used in the formula to determine when to stop processing.
(12 - 1) + 1 = 12
: options obs=12; proc print data=Ages; run;
(12 - 2) + 1 = 11
. OBS= in
this situation is neither the observation number to end with nor how
many observations to process; the value is used in the formula to
determine when to stop processing.