
The following REPLAY statement replays all observations
except the last observation:
replay class(where=(_obs_ < _max_));
The following REPLAY statement replays the first, third,
fifth, seventh, and ninth observations:
replay class(where=(_obs_ in (1,3,5,7,9)));
observation-number
is the observation number to be replayed.
Restrictions
observation-number is used only for output objects.
observation-number is used only in the REPLAY
statement.
Example
The following REPLAY statement replays the first, third,
fifth, seventh, and ninth observation:
replay class(where=(_obs_ in (1,3,5,7,9)));
observation-variable
is the name of an observation.
Restrictions
observation-variable ...