Created
November 25, 2019 22:01
-
-
Save alexeyknorre/93160269f90ea7e9ee158df4001de1d1 to your computer and use it in GitHub Desktop.
This file contains 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) | |
link <- "https://ege.hse.ru/rating/2018/75767740/all/" | |
tab <- read_html(link) %>% | |
# Detect everything that looks like a table | |
html_table() %>% | |
# Choose second element in the list (rvest found two tables) | |
.[[2]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment