我有一个HTML文件列表,如:
text1 <- read_html(linkofthetext)
text2 <- read_html(linkofthetext)
.
.
until
text100 <- read_html(linkofthetext)
我想通过所有类似的方式创建矢量:
vector <- c(text1, text2..)
不适用于此
v <- c(text(1:100)
很显然,我不能手动编写所有100个文本。
我该如何处理?
谢谢。