我使用此代码
library(rvest)
url<-read_html("http://en.wikipedia.org/wiki/Brazil_national_football_team")
我收回了这个错误
Error: could not find function "read_html"
知道这有什么问题吗?
如果是这样的多个链接
library(rvest)
urls<-html("https://en.wikipedia.org/wiki/Financial_crisis",
"https://en.wikipedia.org/wiki/Inflection",
"https://en.wikipedia.org/wiki/Financial_crisis_of_2007%E2%80%9308"
)
我收到了这个:
Error: is.config(config) is not TRUE
我怎样才能让它发挥作用?如果我将此链接转换为txt文件,该怎么办?
答案 0 :(得分:9)
文档可能是指read_html()
包中的xml2
函数,该函数由同一作者Hadley Wickham在rvest
软件包首次发布后编写。
因此,您必须按如下方式安装和加载xml2
包:
install.packages('xml2')
library('xml2')
url<-read_html("http://en.wikipedia.org/wiki/Brazil_national_football_team")