I am trying to learn R and want to bring in an SPSS file, which I can open in SPSS.
I have tried using read.spss from foreign and s
read.spss
foreign
s
The read.spss seems to be outdated a little bit, so I used package called memisc.
memisc
To get this to work do this:
install.packages("memisc") data <- as.data.set(spss.system.file('yourfile.sav'))