I am trying to read a .sav file into R but I got the following warning:
library("memisc")
dataset <- data.frame(as.data.set(spss.system.file("dataset.sav")))
parseSysHeader(ptr) : file lacks info_flt64 record, using defaults
Could someone tell me what this warning means and how to fix it? Any help would be appreciated.
Thank you
Takahiro
dataset=read_sav(file.choose())
– Enchiridion