我想(对于LSAfun :: genericSummary)用c(".", "!", "?")
分割一些字符串。我使用了选项fixed = TRUE
,但它仍会返回磨损结果。
我想了解为什么它无法正常工作,因为我无法修改通话。
实际上,它不是直接调用而是通过LSAfun::genericSummary
调用。由于出现意外拆分结果,结果不是预期的结果。
strsplit("Faut-il reconnaitre le vote blanc ? Faut-il rendre le vote obligatoire ?",
split = c(".", "!", "?"), fixed = TRUE)[[1]]
返回:
[1] "Faut-il reconnaitre le vote blanc ? Faut-il rendre le vote obligatoire ?"
预期:
[1] "Faut-il reconnaitre le vote blanc " " Faut-il rendre le vote obligatoire " ""
我迷路了……有人要解释吗?
> sessionInfo()
R version 3.3.0 (2016-05-03)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
locale:
[1] LC_COLLATE=French_France.1252 LC_CTYPE=French_France.1252 LC_MONETARY=French_France.1252 LC_NUMERIC=C LC_TIME=French_France.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] tools_3.3.0 yaml_2.1.18
功能:
function (text, k, split = c(".", "!", "?"), min = 5, breakdown = FALSE,
...)
{
sentences <- unlist(strsplit(text, split = split, fixed = T))
if (breakdown == TRUE) {
sentences <- breakdown(sentences)
}
sentences <- sentences[nchar(sentences) > min]
td = tempfile()
dir.create(td)
for (i in 1:length(sentences)) {
docname <- paste("sentence", i, ".txt", sep = "")
write(sentences[i], file = paste(td, docname, sep = "/"))
}
A <- textmatrix(td, ...)
rownames <- rownames(A)
colnames <- colnames(A)
A <- matrix(A, nrow = nrow(A), ncol = ncol(A))
rownames(A) <- rownames
colnames(A) <- colnames
unlink(td, T, T)
Vt <- lsa(A, dims = length(sentences))$dk
snum <- vector(length = k)
for (i in 1:k) {
snum[i] <- names(Vt[, i][abs(Vt[, i]) == max(abs(Vt[,
i]))])
}
snum <- gsub(snum, pattern = "[[:alpha:]]", replacement = "")
snum <- gsub(snum, pattern = "[[:punct:]]", replacement = "")
snum <- as.integer(snum)
summary.sentences <- sentences[snum]
return(summary.sentences)
}
<environment: namespace:LSAfun>
答案 0 :(得分:2)
对于多个split
元素,请将其放置在[]
内,然后用fixed = TRUE
删除paste
或|
模式,以其中一个分割他们
strsplit("Faut-il reconnaitre le vote blanc ? Faut-il rendre le vote obligatoire ?",
split = "[.!?]")[[1]]
根据?strsplit
split-如果发生空匹配,特别是如果split的长度为0,则x会拆分为单个字符。如果拆分的长度大于1,则会沿x循环。
答案 1 :(得分:2)
您还可以省略fixed = TRUE
部分并转义字符,即
strsplit("Faut-il reconnaitre le vote blanc ? Faut-il rendre le vote obligatoire ?", c("\\.|!|\\?"))
当然,由于我们正在使用正则表达式引擎,因此效率不高。