我正在尝试使用 read.table 函数将 PISA 2012 研究 ( http://pisa2012.acer.edu.au/downloads.php ) 中的数据读取到 R 中。这是我试过的代码:
pisa <- read.table("pisa2012.txt", sep = "")
不幸的是,我不断收到以下错误消息:
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings,
: line 2 did not have 184 elements
我试图设置
header = T
但随后收到以下错误消息
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings,
:line 1 did not have 184 elements
最后,这就是 .txt 文件的样子......
http://postimg.org/image/4u9lqtxqd/
谢谢你的帮助!