私はRでコーディングしているWebを練習していますが、どのWebサイトで試しても問題ありません。Web-scraping in R
例えば、
https://www.thecompleteuniversityguide.co.uk/league-tables/rankings?s=Music
私の目標は、すべての77の学校の名前を抽出することである(ロンドン・メトロポリタンへのオックスフォード)
だから私は試してみました...
library(rvest)
url_college <- "https://www.thecompleteuniversityguide.co.uk/league-tables/rankings?s=Music"
college <- read_html(url_college)
info <- html_nodes(college, css = '.league-table-institution-name')
info %>% html_nodes('.league-table-institution-name') %>% html_text()
をよりF12、私はすべての学校の名前がクラス '.league-table-institution-name'の下にあることを知ることができました...それがhtml_nodesでそれを書いた理由です...
どうしたのですか?
あなたは答えを待っている間、あなたはprbly SHLD https://www.thecompleteuniversityguide.co.uk/terms-and-conditions/ – hrbrmstr