我需要使用 R 中的 xml 包将 xml 文件转换为数据框。我的 xml 文件如下所示:
<?xml version="1.0"?>
<root>
<item id="Applications">
<content>
<name><![CDATA[IT Applications]></name>
</content>
<item id="Web">
<content>
<name><![CDATA[Web_IT]]></name>
</content>
<item id="1234">
<content>
<name><![CDATA[FrontEnd-1234]]></name>
</content>
</item>
<item id="3456">
<content>
<name><![CDATA[BackEnd-3456]]></name>
</content>
</item>
</item>
<item id="Corp">
<content>
<name><![CDATA[Corporate]]></name>
</content>
<item id="56778">
<content>
<name><![CDATA[Exchage-56778]]></name>
</content>
</item>
</item>
</root>
我需要把 thix sml 变成这样的数据框:
Web Web_IT 1234 FrontEnd-1234
Web Web_IT 3456 BackEnd-3456
Corp Corpporate 56778 Exchange-56778
有什么想法我会怎么做?有没有人做过这样的事情?