2017-05-24 94 views
-1

我試圖使用XPath湊這個數字我需要this website刮動態信息

我需要這兩個數字

enter image description here


到目前爲止我沒有運氣。任何幫助讚賞。

+0

顯示你的嘗試,並描述它是如何不起作用。 – MrFlick

回答

1

它需要是xPath嗎?你可以得到它:

library(rvest) 
page <- read_html("http://www.myfxbook.com/community/outlook/EURUSD") 
page %>% html_nodes("#leftColumn td:nth-child(4)") %>% html_text()