与What could cause a "bad magic number" error when loading an R workspace and how to avoid it?和R has magic number 'ëPNG' error一样,我收到错误的恢复文件幻数错误:
> load("fossilien.dat")
Error: bad restore file magic number (file may be corrupted) -- no data loaded
In addition: Warning message:
file ‘fossilien.dat’ has magic number '"Samp'
Use of save versions prior to 2 is deprecated
使用source
函数会给我一个不同的错误(类似于unexpected string constant):
> source("fossilien.dat")
Error in source("fossilien.dat") :
fossilien.dat:1:10: unexpected string constant
1: "Sample" "Sname"
^
这尤其令人沮丧,因为我确信数据来源是合法的 - 这是一个家庭作业问题:ftp://stat.ethz.ch/Teaching/Datasets/WBL/fossilien.dat
以上所有问题都没有得到真正的回答,所以我想我会再试一次。
关于我的R安装的一些细节:
> R.Version()
$platform
[1] "x86_64-apple-darwin9.8.0"
$version.string
[1] "R version 2.15.3 (2013-03-01)"
答案 0 :(得分:3)
read.table
功能最终正常工作:http://stat.ethz.ch/R-manual/R-devel/library/utils/html/read.table.html
> fossildata <- read.table("fossilien.dat")
CGW编辑:load
适用于.rdata
格式的文件,而fossilien.dat
显然是ASCII表格。 source
执行指定的文件或对象。