R-devel and bad magic number
Sean Davis wrote:
Is anyone else having issues like this (r-devel)? The files look fine in an editor....
load('stuff1.R')
Error: bad restore file magic number (file may be corrupted) -- no data loaded
load('/Users/sdavis/Desktop/Downloads/biomaRt/R/biomaRt.R')
Error: bad restore file magic number (file may be corrupted) -- no data loaded
load() is for binary workspaces. Use source() to read source code. Duncan Murdoch