我在 R 中有一个语料库 x,它是从使用 DirSource 的目录创建的。每个文档都是一个文本文件,其中包含相关 vBulletin 论坛网页的完整 HTML。因为它是一个线程,所以每个文档都有多个我想用我的 XPath 捕获的单独的帖子。XPath 似乎可以工作,但我无法将所有捕获的节点放回语料库。
如果我的语料库有 25 个文档,每个文档平均有 4 个帖子,那么我的新语料库应该有 100 个文档。我想知道我是否必须做一个循环并创建一个新的语料库。
到目前为止,这是我凌乱的工作。来自 www.vbulletin.org/forum/ 中的线程的任何来源都是该结构的示例。
#for stepping through
xt <- x[[5]]
xpath <- "//div[contains(@id,'post_message')]"
getxpath <- function(xt,xpath){
require(XML)
#either parse
doc <- htmlParse(file=xt)
#doc <- htmlTreeParse(tolower(xt), asText = TRUE, useInternalNodes = TRUE)
#don't know which to use
#result <- xpathApply(doc,xpath,xmlValue)
result <- xpathSApply(doc,xpath,xmlValue)
#clean up
result <- gsub(pattern="\\s+",replacement=" ",x=gsub(pattern="\n|\t",replacement=" ",x=result))
result <- c(result[1:length(result)])
free(doc)
#converts group of nodes into 1 data frame with numbers before separate posts
#require(plyr)
#xbythread <- ldply(.data=result,.fun=function(x){unlist(x)})
#don't know what needs to be returned
result <- Corpus(VectorSource(result))
#result <- as.PlainTextDocument(result)
return(result)
}
#call
x2 <- tm_map(x=x,FUN=getxpath,"//div[contains(@id,'post_message')]")