gpt4 book ai didi

r - 错误 : could not find function "read_html"

转载 作者:行者123 更新时间:2023-12-04 09:23:19 29 4
gpt4 key购买 nike

我用这个代码

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 文件,会怎样?

最佳答案

该文档可能提到了 read_html() xml2 中的函数在 rvest 最初出版后由同一作者 Hadley Wickham 编写的包包裹。

因此,您必须安装和加载 xml2包装如下:

install.packages('xml2')
library('xml2')

url<-read_html("http://en.wikipedia.org/wiki/Brazil_national_football_team")

关于r - 错误 : could not find function "read_html",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30956360/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com