From 2674b870ae081651ce88cd06dbacaebface61eba Mon Sep 17 00:00:00 2001 From: Raffaele Mancuso <54762742+raffaem@users.noreply.github.com> Date: Sun, 16 Jul 2023 14:28:58 +0200 Subject: [PATCH] Change IMDB link to archived version (#1532) Fixes #1531 --- webscraping.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webscraping.qmd b/webscraping.qmd index 55054b6..9e30b37 100644 --- a/webscraping.qmd +++ b/webscraping.qmd @@ -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 |>