Skip to content

Instantly share code, notes, and snippets.

@toyeiei
Created January 16, 2019 00:32
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 toyeiei/2646da6b0ee568400ed011d3e055a1e0 to your computer and use it in GitHub Desktop.
Save toyeiei/2646da6b0ee568400ed011d3e055a1e0 to your computer and use it in GitHub Desktop.
rvest tutorial 3
# select year
imdb %>%
html_nodes(".text-muted.unbold") %>%
html_text()
# select rating
imdb %>%
html_nodes(".ratings-imdb-rating strong") %>%
html_text()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment