loading .rda error

I have got some .rda files, but can't load it to RStuidio. The error is file ‘Data.rda’ has magic number ''
Use of save versions prior to 2 is deprecated .

Among the things that can be tried, depending on exactly what was saved in Data.rda and how

readRDS('Data.rda')
# or
readr::read_rds('Data.rda')
# or (possibly)
devtools::use_data('Data.rda', internal = TRUE)
# or (possibly)
read.table("Data.rda")

Or update R to version later than 3.5.0 (preferably 4.2.2)

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.