Thanks for all of the support so far. I'm making the move from SPSS to R. I have the following SPSS code. Are there ways in R to deal with NAs in the same way as SPSS?
Thanks!
FREQUENCIES income.
RECODE income (1 THRU 6 = copy) (else = SYSMIS) INTO
income2.
FREQUENCIES income2.
*User defined missing.
FREQUENCIES income.
MISSING VALUES income (8, 9).
FREQUENCIES income.
*Remove user defined missing.
MISSING VALUES income ().
FREQUENCIES income.