Re: [R] Re ad HTML table

2007-11-19 Thread f.jamitzky
or even read.csv to read the file into R. Gamma wrote: > > > f.jamitzky wrote: >> >> You can use htmlTreeParse and xpathApply from the XML library. >> something like: >> >> xpathApply( htmlTreeParse("http://blabla";, useInt=T), "

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)

Re: [R] Someone Using Java/R Interface--- JRI ?

2007-09-13 Thread f.jamitzky
I made the observation that it is easier to call java from R by using rJava. This is very much analogous to calling C or fortran from R, but your mileage can vary. Vaibhav Gathibandhe wrote: > > Hi all, > > I am writing R code and I want to interface with JAVA i.e. I want to call > R > from J