Skip to content

Instantly share code, notes, and snippets.

@hadley

hadley/tiobe.R Secret

Created January 12, 2018 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hadley/21b7e5d6d35c6a75d956de06dbd0ce64 to your computer and use it in GitHub Desktop.
Save hadley/21b7e5d6d35c6a75d956de06dbd0ce64 to your computer and use it in GitHub Desktop.
library(rvest)
page <- read_html("https://www.tiobe.com/tiobe-index/r/")
script <- page %>%
html_node("body > section > section > section > article > script") %>%
html_text()
# Want to get data our of series argument
cat(script)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment