I regularly extract tables from Wikipedia. Excel’s web import does not work properly for wikipedia, as it treats the whole page as a table. In google spreadsheet, I can enter this:
=ImportHtml("http://en.wikipedia.org/wiki/Upper_Peninsula_of_Michigan","table",3)
and this function will download the 3rd table, which lists all the counties of the UP of Michigan, from that page.
Is there something similar in R? or can be created via a user defined function?
The function
readHTMLTablein packageXMLis ideal for this.Try the following:
readHTMLTablereturns a list ofdata.frames for each element of the HTML page. You can usenamesto get information about each element: