我有一些文本文件的向量。这是我的处理方式
text[1] <- read_html("link1")
text[2] <- read_html("link2")
text[3] <- read_html("link3")
.
. until text [100]
我想创建一个具有以下内容的语料库:
x <- list(text[i])
z <- lapply(x, read_html)
我知道了
Error in UseMethod("read_xml") : no applicable method for 'read_xml' applied to an object of class "list"
在该错误之前,它是逻辑数据,我已将文本[i]转换为以下
text[i] <- as.character (text[i])
另外,我知道了
number of items to replace is not a multiple of replacement lengthnumber of items to replace is not a multiple of replacement
我不知道发生了什么。 谢谢。
答案 0 :(得分:0)
我尝试过:
x <- rep("https://www.google.com/", 3)
z <- lapply(x, read_html)
有效吗?