gpt4 book ai didi

R:不建议使用2之前的保存版本

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

有时我使用保存功能将一些列表变量保存为文件

> str(ttr.varSD)
List of 4
$ classifierLimits: Named num [1:5] 2 13 5 24 16
..- attr(*, "names")= chr [1:5] "sdClose-VS" "sdDiff-VS"...
$ trainClassLabels: num [1:497] 4 2 3 4 2 3 2 4 1 4 ...
$ testClassLabels : num [1:497] 4 2 2 4 4 4 4 4 4 4 ...
>
> save(ttr.varSD, file='ttr.varSD.RDS')

现在,我想使用 load(file='ttr.varSD.RDS')函数检索它们,但它返回此错误。
>load(file='ttr.varSD.RDS')

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

This question建议使用 read.table函数,但我的数据不是表。但是我以任何方式对其进行了测试,但返回的结果显然不是我的完整数据:
> read.table('ttr.varSD.RDS')
V1
1 X
2 sdClose-VS
3 sdClose-US
Warning messages:
1: In read.table("objects/ttr.varSD.RDS") :
line 2 appears to contain embedded nulls
2: In read.table("objects/ttr.varSD.RDS") :
line 3 appears to contain embedded nulls
3: In read.table("objects/ttr.varSD.RDS") :
line 4 appears to contain embedded nulls
4: In read.table("objects/ttr.varSD.RDS") :
incomplete final line found by readTableHeader on 'ttr.varSD.RDS'

是否有机会检索这些文件或它们全部已损坏。要知道我的工作环境,这可能很重要,我在Windows 7上使用R Studio 3.1.1(2014-07-10)和RStudio,将我的所有工作与google驱动器同步并具有git版本控制。

最佳答案

您可以使用readRDS函数来还原存储在.RDS文件中的对象。在您的情况下:

readRDS('ttr.varSD.RDS')

关于R:不建议使用2之前的保存版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33360482/

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