在Rstudio中读取rds文件时报错“Error in gzfile(file, "rb") : cannot open the connection rds”,命令如下所示:
out <- readRDS("file.rds")

解决办法是加上绝对路径:

out <- readRDS("D:/path/to/file.rds")

相关文章:

  • 2021-05-21
  • 2022-01-15
  • 2021-09-04
  • 2021-11-09
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-05
  • 2021-08-18
相关资源
相似解决方案