Skip to content

Instantly share code, notes, and snippets.

@cpsievert
Created June 12, 2015 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cpsievert/c1b851ff5e1bd846de46 to your computer and use it in GitHub Desktop.
Save cpsievert/c1b851ff5e1bd846de46 to your computer and use it in GitHub Desktop.
library(rvest)
src <- html("http://en.wikipedia.org/wiki/List_of_data_structures")
src %>% html_nodes("ul:nth-child(7) a") %>% html_text()
src %>% html_nodes("ul:nth-child(19) a") %>% html_text()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment