Skip to content
Prev 70 / 885 Next

R Equivalent of SPSS "Split File" and "AutoRecode"

I have no clue what "autorecode" means.  Selecting a subset of a file is
easy.  Suppose your data frame is named X, assuming REGION is numeric:

    attach(X)
    X17 = X[REGION == 17,]

albyn
On Thu, Nov 13, 2008 at 05:18:24PM -0600, Richardson, Paul wrote: