我正在尝试学习如何使用R而我喜欢运行简单/多重/逻辑回归,但我一开始就陷入困境。我使用以下代码成功地在R中加载了一个spss数据库:
> library(foreign)
> data<-read.spss("new long an.sav", use.value.labels=TRUE, to.data.frame=TRUE)
re-encoding from UTF-8
> data
然后,我试图通过执行以下操作来指定我想要进行回归的数据文件:
> newlongan<-read.delim("new long an.sav", header = TRUE)
然而,出现以下错误消息,我不知道如何解决它们:
> Warning messages:
1: In read.table(file = file, header = header, sep = sep, quote = quote, :
line 1 appears to contain embedded nulls
2: In read.table(file = file, header = header, sep = sep, quote = quote, :
incomplete final line found by readTableHeader on 'new long an.sav'
我安装了汽车,开机和QuantPsyc。你有什么主意吗?感谢
西尔维娅