Skip to content

Instantly share code, notes, and snippets.

@njahn82
Created November 8, 2017 08:45
Show Gist options
  • Select an option

  • Save njahn82/fa73104e466e4366cde8097b8e467140 to your computer and use it in GitHub Desktop.

Select an option

Save njahn82/fa73104e466e4366cde8097b8e467140 to your computer and use it in GitHub Desktop.
ARWU
# url heraussuchen
u <- "http://www.shanghairanking.com/de/ARWU2015.html"
# scrapen mit rvest
library(rvest)
library(dplyr)
library(rio)
read_html(u) %>%
html_table(fill = TRUE) %>%
rio::export("~/Downloads/arwu_2015.xlsx")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment