I have an xml file. I tried to convert this xml file into data frame. But I could not.
XMl Input
<root>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
</root>
Expected Output
id to from heading body
0 Tove Jani Reminder Don't forget me this weekend!
1 Tove Jani Reminder Don't forget me this weekend!