标签: r web-scraping
我尝试使用xpath来抓取this website上需要的数字
我需要这两个数字
到目前为止,我没有运气。任何帮助赞赏。
答案 0 :(得分:1)
是否需要xPath?你可以用它来获得它:
library(rvest) page <- read_html("http://www.myfxbook.com/community/outlook/EURUSD") page %>% html_nodes("#leftColumn td:nth-child(4)") %>% html_text()