Change IMDB link to archived version (#1532)

Fixes #1531
This commit is contained in:
Raffaele Mancuso 2023-07-16 14:28:58 +02:00 committed by GitHub
parent 6cc6b88438
commit 2674b870ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ knitr::include_graphics("screenshots/scraping-imdb.png", dpi = 300)
This data has a clear tabular structure so it's worth starting with `html_table()`:
```{r}
url <- "https://www.imdb.com/chart/top"
url <- "https://web.archive.org/web/20220201012049/https://www.imdb.com/chart/top/"
html <- read_html(url)
table <- html |>