hi, is it possible to read the source code of a website within R?
On 8/26/2009 12:44 PM, Martin Batholdy wrote:> hi, > > is it possible to read the source code of a website within R?url("http://example.com") creates a connection that you can do what you like with. For example, readLines(url("http://www.r-project.org")) Duncan Murdoch