Load XML to DataFrame in R
Posted
by
Rohit Kandhal
on Stack Overflow
See other posts from Stack Overflow
or by Rohit Kandhal
Published on 2013-11-09T21:45:18Z
Indexed on
2013/11/09
21:53 UTC
Read the original article
Hit count: 442
I am new to R programming and trying to load a simple XML in RStudio. I tried using XMLToDataFrame
but got this error XML content does not seem to be XML: 'temp.xml'
XML Schema
<root>
<row Id="1" UserId="1" Name="Rohit" Date="2009-06-29T10:28:58.013" />
<row Id="2" UserId="3" Name="Rohit" Date="2009-06-29T10:28:58.030" />
</root>
Please provide me some direction on which function I should use here.
© Stack Overflow or respective owner