| Valid in: | Anywhere |
| Category: | Information |
a or z, do not use the MISSING=
option to define them; simply define these values in a MISSING statement.
A can mean that the respondent
is not at home at the time of the survey; an R can mean that the respondent refused to answer. Use the MISSING
statement to identify to SAS that the values A and R in the input data lines are to be
considered special missing values rather than invalid numeric data
values:data survey; missing a r; input id answer; datalines; 001 2 002 R 003 1 004 A 005 2 ;