Overview (USE command)
USE
designates
a range of observations to be used with time series procedures. Cases
outside the defined range are filtered but not deleted from the active
dataset unless the /PERMANENT
subcommand is specified.
Basic Specification
The basic specification
is either the start of the range, the end of the range, or both. You
can also simply specify the keyword THRU
or ALL
.
- The default start is the first observation in the file, and the default end is the last observation.
- The keyword
THRU
is required if the end of the range is specified. - The keyword
ALL
defines aUSE
range starting with the first observation and ending with the last observation in the series. It can be specified to restore processing to the entire series. - The keyword
THRU
by itself is the same as specifying the keywordALL
.
Operations
-
USE
is ignored by the utility proceduresCREATE
andRMV
. These procedures process all of the available data. - The
DATE
command turns off all existingUSE
andPREDICT
specifications. -
FILTER
andUSE
are mutually exclusive.USE
automatically turns off any previousFILTER
command, andFILTER
automatically turns off any previousUSE
command. - The
SORT
command automatically turns off any previousUSE
command specification. -
USE
remains in effect in a session until it is changed by anotherUSE
command or until a newDATE
,FILTER
, orSORT
command is issued.
Limitations
- A maximum of one range (one start and/or one end) can be specified.