Re: [R] parse XML file

2011-06-29 Thread Ben Tupper
Hi, On Jun 29, 2011, at 6:26 AM, Kai Serschmarn wrote: Thank you Barry, that works fine. Sorry for stupid questions... however, I couldn't manage to get a dataframe out of this. That's what I was doing: doc = xmlRoot(xmlTreeParse("de.dwd.klis.TADM.xml")) dumpData <- function(doc){

Re: [R] parse XML file

2011-06-29 Thread Kai Serschmarn
Thank you Barry, that works fine. Sorry for stupid questions... however, I couldn't manage to get a dataframe out of this. That's what I was doing: doc = xmlRoot(xmlTreeParse("de.dwd.klis.TADM.xml")) dumpData <- function(doc){ for(i in 1:length(doc)){ stns = doc[[i]]

Re: [R] parse XML file

2011-06-29 Thread Barry Rowlingson
On Wed, Jun 29, 2011 at 8:17 AM, Kai Serschmarn wrote: > Hi all, > > this is my first post in this mailing group. I hope that anyboby could help > me parsing a xml file. > I found this website http://www.omegahat.org/RSXML/gettingStarted.html but > unfortunately my XML file is not as easy as the o

[R] parse XML file

2011-06-29 Thread Kai Serschmarn
Hi all, this is my first post in this mailing group. I hope that anyboby could help me parsing a xml file. I found this website http://www.omegahat.org/RSXML/gettingStarted.html but unfortunately my XML file is not as easy as the one in the example. Example: http://werdis.dwd.de/css/UNIDA

Re: [R] Parse XML

2008-06-10 Thread Martin Morgan
Hi Pratt -- ppatel3026 <[EMAIL PROTECTED]> writes: > Could someone provide a link or examples of parsing XML document in R? Few > specific questions below: Always helpful to know what software you're using; here's mine > library(XML) > sessionInfo() R version 2.8.0 Under development (unstable)

[R] Parse XML

2008-06-10 Thread ppatel3026
Could someone provide a link or examples of parsing XML document in R? Few specific questions below: For instance I can retrieve specific nodes using this: node <- xpathApply(xml, "//" %+% xtag, xmlValue) 1) I want to be able to retrieve parent node for this node, how can I do this? getParentN