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)