I had a similar problem and it was resolved after the read.spss prompt. Instead, instead of the memisc package memisc you can import a portable SPSS file:
data <- as.data.set(spss.portable.file("filename.por"))
Similarly, for .sav files:
data <- as.data.set(spss.system.file('filename.sav'))
although in this case I seem to be missing some string values, while portable imports work without problems. The help page for spss.portable.file states:
The importer mechanism is more flexible and extensible than the read.spss and read.dta packages of the "foreign" package, since most of the parsing of file headers is done in R. They are also adapted to load efficiently large data sets. Most importantly, importing objects support shortcuts that are missing. Values and descriptions provided by this package.
ggll Sep 14 2018-12-12T00: 00Z
source share