for Loop - 替换长度为零

时间:2015-03-14 13:57:49

标签: r for-loop shiny

我对循环有点问题。这是循环的代码:

for (i in 1:length(input$count))
{       
    id<-paste("text",i)
    titles[i]<-input$id
}

返回以下错误

  

titles [i]&lt; - input $ id:replacement的长度为零

时出错

ui.R

library(shiny)
ui <- fluidPage(
numericInput("count", "Number of textboxes", 3),                  
hr(),
uiOutput("textboxes")
)

server.R

server <- function(input, output, session) {
   output$textboxes <- renderUI({
   if (input$count == 0)
      return(NULL)
  lapply(1:input$count, function(i) {
      id <- paste0("text", i)
      print(id)            // its prints the text1, text2,text3
      numericInput(id, NULL, value = abc)
      print(input$text1)   //it should print value abc , but it is not, why??

    })
  })
}

1 个答案:

答案 0 :(得分:3)

此错误表示您的输入ID为NULL或长度为0的向量:确保索引正确。

此外,在R中,通常最好避免使用循环,因为它们往往很慢:请参阅Why are loops slow in R?。几乎总有一种方法可以避免使用for循环并使用向量化函数,尽管现在的示例并未提供足够的细节来实际建议函数。