Skip to content
Prev 57068 / 398498 Next

reading Systat into R

My experience with getting spss files suggests that you might actually be
seeing the file as a list.  Look at help for
?read.spss.  The most usable format to get a data frame is:

dframe=read.spss("MyData.sav",to.data.frame=T)

See if this doesn't do what you expect.