我希望使用排名提取表并从示例URL返回 https://www.valueresearchonline.com/funds/fundSelector/returns.asp?cat=10&exc=susp%2Cclose&rettab=st
到目前为止尝试了rvest
#Reading the HTML code from the website
webpage <- read_html(urlString)
#Using CSS selectors to scrap the section
tables <- webpage %>% html_node("tr") %>% html_text()
tables <- html_node(".fundtool_cat") %>% html_text()
我需要一个数据框/表,其中包含该计划的名称以及所有所有期间的排名和回报 任何帮助将不胜感激。
答案 0 :(得分:2)
希望这有帮助!
library(rvest)
urlString <- "https://www.valueresearchonline.com/funds/fundSelector/returns.asp?cat=10&exc=susp%2Cclose&rettab=st"
urlString %>%
read_html() %>%
html_nodes(xpath='//*[@id="fundCatData"]/table[1]') %>%
html_table(fill=T)