我正在尝试从以下链接中提取完整的表格内容 https://www.forbes.com/global2000/list/#tab:overall
我使用以下代码提取数据,但是代码仅返回表标题而不返回内容。我认为这是由于网站设计的本质所致吗?在这种情况下,我该如何提取完整的表数据,我会丢失什么?
library(rvest)
url <- "https://www.forbes.com/global2000/list/#tab:overall"
html <- read_html(url)
node <- html%>%html_nodes("table")
company_data <- html_table(node)
company_data