【发布时间】:2016-01-31 01:47:28
【问题描述】:
我正在创建一个闪亮的应用程序来对简历执行文本分析。在 R Studio 中一切正常,但是当我尝试运行 Shiny 应用程序时,我的合格函数(输出)出现错误“下标越界”。
在 R Studio 中,我运行此代码,它运行良好(您必须在 1 中插入一个 .txt 文档文件夹才能真正运行):
cname <- file.path("insert any file of .txt documents")
dir(cname)
length(dir(cname))
library(tm)
docs <- Corpus(DirSource(cname))
toSpace <- content_transformer(function(x, pattern) gsub(pattern, " ", x))
docs <- tm_map(docs, toSpace, "/|@|\\|")
docs <- tm_map(docs, content_transformer(tolower))
docs <- tm_map(docs, removePunctuation)
docs <- tm_map(docs, removeWords, stopwords ("english"))
docs <- tm_map(docs, removeNumbers)
dtm <- DocumentTermMatrix(docs)
freq <- colSums(as.matrix(dtm))
length(freq)
list<-DocumentTermMatrix(docs,list(dictionary = c("python", "machine")))
relist=as.data.frame(as.matrix(list))
machine = ifelse(relist$machine > 0, 1,0)
python = ifelse(relist$python > 0, 1,0)
as.numeric(machine)
as.numeric(python)
newlist=cbind(machine, python)
totals=rowSums(newlist)
docname=dir(cname)
wordtotals=cbind(docname, totals)
qualified=wordtotals[wordtotals[,2]>=2,]
在 R Shiny 中,我有以下代码:
## ui.R
shinyUI(fluidPage(
titlePanel("Resume Text Analysis"),
sidebarLayout(position = "right",
mainPanel(h2("Qualified Applicants"), dataTableOutput("table")),
sidebarPanel(h2("Specifications"),
textInput("filepath", label = h4("Paste the file path for the folder of '.txt' files you would like included in the analysis.")),
helpText("Choose up to 10 words that a qualified applicant should have in their resume. These can be skills, programming languages, etc. Please put '' '' on either side of each word."),
textInput("word1", label = h3("Term 1"),
value = ""),
textInput("word2", label = h3("Term 2"),
value = ""),
helpText("A qualified applicant will have a resume with at least ___ of the terms above."),
numericInput("morethan",
label = h3("Number of terms required:"),
min = 1, max = 2, value = 1)
)
)))
## server.R
library(tm)
shinyServer(
function(input, output) {
observeEvent(input$filepath,{
if(is.null(input$filepath) || nchar(input$filepath) ==0) return(NULL)
cname <- file.path(input$filepath)
dir(cname)
length(dir(cname))
docs <- Corpus(DirSource(cname))
toSpace <- content_transformer(function(x, pattern) gsub(pattern, " ", x))
docs <- tm_map(docs, toSpace, "/|@|\\|")
docs <- tm_map(docs, content_transformer(tolower))
docs <- tm_map(docs, removePunctuation)
docs <- tm_map(docs, removeWords, stopwords ("english"))
docs <- tm_map(docs, removeNumbers)
one = input$word1
two = input$word2
list<-DocumentTermMatrix(docs,list(dictionary = c(one, two)))
relist=as.data.frame(as.matrix(list))
one = ifelse(relist$one > 0, 1,0)
two = ifelse(relist$two > 0, 1,0)
as.numeric(one)
as.numeric(two)
newlist=cbind(one, two)
totals=rowSums(newlist)
docname=dir(cname)
wordtotals=cbind(docname, totals)
num = input$morethan
as.numeric(num)
output$table <- renderDataTable({
wordtotals[wordtotals[,2]>=num,]
})
})
}
)
这是 R Shiny 中的错误(因为代码在 R Studio 中运行良好)还是我在编码中遗漏了什么?
谢谢
【问题讨论】:
-
加入一些
browser()调用,看看你的对象R里面有什么闪亮的。
标签: r datatable dataframe shiny render