gpt4 book ai didi

r - 将 xml 对象写入磁盘

转载 作者:数据小太阳 更新时间:2023-10-29 02:06:02 25 4
gpt4 key购买 nike

我有一大堆 xml 文件,我需要处理它们。就此而言,我希望能够读取文件,并将生成的对象列表保存到磁盘。我尝试用 readr::write_rds 保存列表,但再次读入后,对象有所修改,不再有效。我能做些什么来缓解这个问题吗?

library(readr)
library(xml2)

x <- read_xml("<foo>
<bar>text <baz id = 'a' /></bar>
<bar>2</bar>
<baz id = 'b' />
</foo>")

# function to save and read object
roundtrip <- function(obj) {
tf <- tempfile()
on.exit(unlink(tf))

write_rds(obj, tf)
read_rds(tf)
}

list(x)
#> [[1]]
#> {xml_document}
#> <foo>
#> [1] <bar>text <baz id="a"/></bar>
#> [2] <bar>2</bar>
#> [3] <baz id="b"/>
roundtrip(list(x))
#> [[1]]
#> {xml_document}

identical(x, roundtrip(x))
#> [1] FALSE
all.equal(x, roundtrip(x))
#> [1] TRUE
xml_children(roundtrip(x))
#> Error in fun(x$node, ...): external pointer is not valid
as_list(roundtrip(x))
#> Error in fun(x$node, ...): external pointer is not valid

一些上下文

我有大约 500,000 个 xml 文件。为了处理它们,我计划使用 xml2::as_list 将它们变成一个列表,并且我编写了代码来提取我需要的内容。后来我意识到,as_list 的运行成本非常高。我可以:

  1. 重写已经仔细调试过的代码来直接解析数据(xml_child, xml_text, ...),或者
  2. 使用as_list

为了加快no. 2 我可以在另一台具有更多内核的机器上运行它,但我想将单个文件传递给那台机器,因为收集和复制所有文件非常耗时。

最佳答案

xml2 对象具有外部指针,当您天真地将它们序列化时,这些指针会变得无效。该包提供了 xml_serialize()xml_unserialize() 对象来为您处理这个问题。不幸的是,API 有点麻烦,因为 base::serialize()base::unserialize() 假定一个打开的连接。


library(xml2)

x <- read_xml("<foo>
<bar>text <baz id = 'a' /></bar>
<bar>2</bar>
<baz id = 'b' />
</foo>")

# function to save and read object
roundtrip <- function(obj) {
tf <- tempfile()
con <- file(tf, "wb")
on.exit(unlink(tf))

xml_serialize(obj, con)
close(con)
con <- file(tf, "rb")
on.exit(close(con), add = TRUE)
xml_unserialize(con)
}
x
#> {xml_document}
#> <foo>
#> [1] <bar>text <baz id="a"/></bar>
#> [2] <bar>2</bar>
#> [3] <baz id="b"/>
(y <- roundtrip(x))
#> {xml_document}
#> <foo>
#> [1] <bar>text <baz id="a"/></bar>
#> [2] <bar>2</bar>
#> [3] <baz id="b"/>

identical(x, y)
#> [1] FALSE
all.equal(x, y)
#> [1] TRUE
xml_children(y)
#> {xml_nodeset (3)}
#> [1] <bar>text <baz id="a"/></bar>
#> [2] <bar>2</bar>
#> [3] <baz id="b"/>
as_list(y)
#> $bar
#> $bar[[1]]
#> [1] "text "
#>
#> $bar$baz
#> list()
#> attr(,"id")
#> [1] "a"
#>
#>
#> $bar
#> $bar[[1]]
#> [1] "2"
#>
#>
#> $baz
#> list()
#> attr(,"id")
#> [1] "b"

另外关于你问题的第二部分,我会认真考虑使用 XPATH 表达式来提取所需的数据,即使你必须重写代码也是如此。

关于r - 将 xml 对象写入磁盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44070577/

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