[R] XML write?

Gabor Grothendieck ggrothendieck at gmail.com
Tue Apr 29 16:26:55 CEST 2008


On Tue, Apr 29, 2008 at 10:20 AM, Alberto Monteiro
<albmont at centroin.com.br> wrote:
>
> Gabor Grothendieck wrote:
> >
> > By write, do you mean print?
> >
> No, I mean "save to a file".
>
> I solved the problem with this:
>
> library(XML)
> x <- xmlTreeParse("Irpf2008/aplicacao/dados/12345678901/12345678901.xml")
> sink("ihatetheirs.xls")
> print(x)
> sink()
>
> and then I can edit the saved file to cut some extra information
> not-xml related (and do what I want - again, sorry for the foul
> language).
>
> Alberto Monteiro
>
>

Try saveXML:

con <- xmlTreeParse(basic.xml)
root <- xmlRoot(con)
saveXML(root, "myfile.xml")



More information about the R-help mailing list