Skip to content

Instantly share code, notes, and snippets.

@alexeyknorre
Created November 25, 2019 22:01
Show Gist options
  • Save alexeyknorre/93160269f90ea7e9ee158df4001de1d1 to your computer and use it in GitHub Desktop.
Save alexeyknorre/93160269f90ea7e9ee158df4001de1d1 to your computer and use it in GitHub Desktop.
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