gpt4 book ai didi

r - 在 R 中保存并重新加载 'list' 对象

转载 作者:行者123 更新时间:2023-12-04 12:45:46 26 4
gpt4 key购买 nike

我正在尝试将我手动创建的列表对象保存到 list 中。我可以很快引用的格式。
保存的对象应该能够作为 list 加载回来不是 df或任何东西。

下面是我的列表对象的一部分:

citations <- list(
as.integer(c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 111)),
as.integer(c(2, 3, 4, 5, 6, 7, 8, 9, 10, 111)),
as.integer(c(1, 3, 4, 5, 6, 7, 8, 9, 10, 111)),
as.integer(111),
as.integer(111),
as.integer(111),
as.integer(111),
as.integer(111),
as.integer(111),
as.integer(111),
as.integer(111),
as.integer(6),
integer(0),
as.integer(c(14, 15, 16, 17, 18, 19, 20, 21, 22, 23))
)

我引用了 this thread和一个更早的 nabble ,他们建议简单地使用 saveload ,但每当我应用 save() 时,我就是无法弄清楚这是如何工作的。 list 上的功能对象并为其指定一个 R 对象,我总是收到一条错误消息。
save(citations, "/~citations.Rdata")
Error in save(citations, "~/citations.Rdata") : object ‘~/citations.Rdata’ not found

只是不知道是否需要其他函数调用。

最佳答案

您的选择是:

  • base::save并加载
  • base::saveRDS并阅读RDS
  • rlist::list.save和 list.load
  • 关于r - 在 R 中保存并重新加载 'list' 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49177306/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com