我正在尝试使用R和rvest从以下气象站点URL刮除“每日观测”表:
https://www.wunderground.com/history/daily/gb/hounslow/EGLL/date/2019-2-6
我认为这很简单,并且检查了源代码以使用xpath查找观察表:'// * [@ id =“ history-observation-table”]'
因此认为此代码应该有效:
library(rvest)
url = "https://www.wunderground.com/history/daily/gb/hounslow/EGLL/date/2019-2-6"
table = url %>% read_html %>% html_nodes(xpath='//*[@id="history-observation-table"]') %>% html_table()
但是,它只返回一个空列表-我想念什么?
谢谢