Re: [R] Re ad HTML table

2007-11-19 Thread Duncan Temple Lang
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 theta wrote: f.jamitzky wrote: You can use htmlTreeParse and xpathApply from the XML library. something like: xpathApply( htmlTreeParse(http://blabla;, useInt=T), //td, function(x) xmlValue(x)) should do it. Thank you, any further

Re: [R] Re ad HTML table

2007-11-18 Thread f.jamitzky
You can use htmlTreeParse and xpathApply from the XML library. something like: xpathApply( htmlTreeParse(http://blabla;, useInt=T), //td, function(x) xmlValue(x)) should do it. Gamma wrote: anyone care to explain how to read a html table, it's streaming data (updated every second) and i

Re: [R] Re ad HTML table

2007-11-18 Thread theta
f.jamitzky wrote: You can use htmlTreeParse and xpathApply from the XML library. something like: xpathApply( htmlTreeParse(http://blabla;, useInt=T), //td, function(x) xmlValue(x)) should do it. Thank you, any further ideas how to transform the result into a matrix, something that