Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
R のデータフレームから xml ファイルを生成したいと思います。例を次に示します。
data.frame
x y z 1 2 'bla' 3 4 'blou' 5 7 'bli'
XML 結果:
<xml> <tuple x="1" y="2" z="bla" \> <tuple x="3" y="4" z="blou" \> <tuple x="5" y="7" z="bli" \> </xml>