错误:找不到函数“read_html”

时间:2015-06-20 16:31:21

标签: r rvest

我使用此代码

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文件,该怎么办?

1 个答案:

答案 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")