102

I tried to load my R workspace and received this error:

Error: bad restore file magic number (file may be corrupted) -- no data loaded
In addition: Warning message:
file ‘WORKSPACE_Wedding_Weekend_September’ has magic number '#gets'
   Use of save versions prior to 2 is deprecated 

I'm not particularly interested in the technical details, but mostly in how I caused it and how I can prevent it in the future. Here's some notes on the situation:

  1. I'm running R 2.15.1 on a MacBook Pro running Windows XP on a bootcamp partition.
  2. There is something obviously wrong this workspace file, since it weighs in at only ~80kb while all my others are usually >10,000
  3. Over the weekend I was running an external modeling program in R and storing its output to different objects. I ran several iterations of the model over the course of several days, eg output_Saturday <- call_model()
  4. There is nothing special to the model output, its just a list with slots for betas, VC-matrices, model specification, etc.
zx8754
  • 42,109
  • 10
  • 93
  • 154
N Brouwer
  • 3,878
  • 6
  • 26
  • 34

9 Answers9

122

I got that error when I accidentally used load() instead of source() or readRDS().

Laurenz Albe
  • 129,316
  • 15
  • 96
  • 132
Chris SH
  • 1,449
  • 1
  • 10
  • 8
38

Also worth noting the following from a document by the R Core Team summarizing changes in versions of R after v3.5.0 (here):

R has new serialization format (version 3) which supports custom serialization of ALTREP framework objects... Serialized data in format 3 cannot be read by versions of R prior to version 3.5.0.

I encountered this issue when I saved a workspace in v3.6.0, and then shared the file with a colleague that was using v3.4.2. I was able to resolve the issue by adding "version=2" to my save function.

jhearn
  • 415
  • 4
  • 6
20

Assuming your file is named "myfile.ext"

If the file you're trying to load is not an R-script, for which you would use

source("myfile.ext")

you might try the readRDSfunction and assign it to a variable-name:

my.data <- readRDS("myfile.ext")
David Arenburg
  • 87,271
  • 15
  • 123
  • 181
user2643170
  • 201
  • 2
  • 3
10

The magic number comes from UNIX-type systems where the first few bytes of a file held a marker indicating the file type.

This error indicates you are trying to load a non-valid file type into R. For some reason, R no longer recognizes this file as an R workspace file.

Ellis Valentiner
  • 1,806
  • 3
  • 19
  • 32
6

Install the readr package, then use library(readr).

zx8754
  • 42,109
  • 10
  • 93
  • 154
  • 1
    Nice trick... I had to try a couple of the packs function but with `readr::` it's easy to scan through the functions. `readr::read_rds` is what worked for me in the end. – Matt Bannert Oct 02 '17 at 20:08
4

It also occurs when you try to load() an rds object instead of using

object <- readRDS("object.rds")
DCZ
  • 795
  • 5
  • 18
3

I got the error when building an R package (using roxygen2)

The cause in my case was that I had saved data/mydata.RData with saveRDS() rather than save(). E.g. save(iris, file="data/iris.RData")

This fixed the issue for me. I found this info here

Also note that with save() / load() the object is loaded in with the same name it is initially saved with (i.e you can't rename it until it's already loaded into the R environment under the name it had when you initially saved it).

stevec
  • 15,490
  • 6
  • 67
  • 110
1

I had this problem when I saved the Rdata file in an older version of R and then I tried to open in a new one. I solved by updating my R version to the newest.

0

If you are working with devtools try to save the files with:

devtools::use_data(x, internal = TRUE)

Then, delete all files saved previously.

From doc:

internal If FALSE, saves each object in individual .rda files in the data directory. These are available whenever the package is loaded. If TRUE, stores all objects in a single R/sysdata.rda file. These objects are only available within the package.

David Arenburg
  • 87,271
  • 15
  • 123
  • 181
mariope
  • 81
  • 1
  • 2
  • 6