Re: [R] [R-sig-DB] Reading data from a worksheet on the Internet

2012-02-12 Thread CIURANA EUGENE (R)
On Sun, 12 Feb 2012 16:24:58 -0200, Nilza BARROS wrote: > I really appreciate your help. I definitively need a reusable program since > I have been asking to someone to extract these data from the Internet > everyday. That's the reason why I am trying to do a program to do that > Related to t

Re: [R] [R-sig-DB] Reading data from a worksheet on the Internet

2012-02-12 Thread Henrique Dallazuanna
Try the readHTMLTable function in package XML: sheet2 <- readHTMLTable(" http://www.mar.mil.br/dhn/chm/meteo/prev/dados/pnboia/sc1201_arquivos/sheet002.htm";, skip.rows = 2) head(sheet2[[1]]) On Sun, Feb 12, 2012 at 4:24 PM, Nilza BARROS wrote: > Hi, > > I really appreciate your help. I defini

Re: [R] [R-sig-DB] Reading data from a worksheet on the Internet

2012-02-12 Thread Nilza BARROS
Hi, I really appreciate your help. I definitively need a reusable program since I have been asking to someone to extract these data from the Internet everyday. That's the reason why I am trying to do a program to do that Related to the url I sent, I have just realized that although I had written

Re: [R] [R-sig-DB] Reading data from a worksheet on the Internet

2012-02-12 Thread CIURANA EUGENE (R)
On Sat, 11 Feb 2012 22:49:07 -0200, Nilza BARROS wrote: > I have to read data from a worksheet that is available on the Internet. I > have been doing this by copying the worksheet from the browser. > But I would like to be able to copy the data automatically using the url > command. > > But