-
-
Save hadley/21b7e5d6d35c6a75d956de06dbd0ce64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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