How can I get SPSS data into R?

Follow

The best way to read any proprietary data into R is to open the data in its original program and export it as a .csv file. Read it into R with `read.csv`.

SPSS is better at converting SPSS file formats than R is at converting SPSS file formats (this fact is true for most programs).

Check out the guide from R on importing and reading datasets in other formats:http://cran.r-project.org/doc/manuals/r-release/R-data.html

Comments