如何在server.r中为主面板输出重新编码闪亮的ui.r数值?

时间:2018-03-24 11:45:42

标签: r shiny shiny-server

我正在建立一个闪亮的应用程序,我有一系列数字输入,如下所示。用户可以输入1-9的值作为10个输入。目标是产生一些考虑服务器的图。将1-9值重新编码为1-3(即,1-3 = 1,4-6 = 2,7-9 = 3)。我尝试在server.r上使用各种重新编码函数,但都会导致错误:'尝试将值分配给只读的反应值对象'。下面是我的ui.r和server.r代码,我最终希望barplot能够反映重新编码的数字输入值。

**ui.R code**

library(shiny)
shinyUI(fluidPage(
titlePanel("Short Form Web App"),  

sidebarPanel(
  numericInput("i1", label = h5("Intellectual Item 1"), min=1,max=9,value=1),
  numericInput("i3", label = h5("Intellectual Item 3"), min=1,max=9,value=1),
  numericInput("i6", label = h5("Intellectual Item 6"), min=1,max=9,value=1),
  numericInput("i9", label = h5("Intellectual Item 9"), min=1,max=9,value=1),
  numericInput("i11",label = h5("Intellectual Item 11"), min=1,max=9,value=1),    
  numericInput("a5", label = h5("Academic Item 5"), min=1,max=9,value=1),
  numericInput("a6", label = h5("Academic Item 6"), min=1,max=9,value=1),
  numericInput("a7", label = h5("Academic Item 7"), min=1,max=9,value=1),
  numericInput("a8", label = h5("Academic Item 8"), min=1,max=9,value=1),
  numericInput("a9", label = h5("Academic Item 9"), min=1,max=9,value=1)
  ),

  mainPanel(
   plotOutput("distPlot1"))))

**server.R code**

library(shiny)

shinyServer(function(input, output) {   
 output$distPlot1 <- renderPlot({
 x<- cbind(input$i1, input$i3, input$i6, input$i9, input$i11)
 bins <- seq(min(x), max(x))
 barplot(height = x,names.arg=c("Item 1", "Item 3","Item 6","Item 9","Item 11"))    
 })
 })

1 个答案:

答案 0 :(得分:1)

我建议您在shinyServer内修改您的功能,如下所示:

shinyServer(function(input, output) {
    output$distPlot1 <- renderPlot({
        x <- cbind(input$i1, input$i3, input$i6, input$i9, input$i11)
        x <- apply(x, 2, function(x) ifelse(x<4,1, ifelse(x>6,3,2)))
        bins <- seq(min(x), max(x))
        barplot(height = x, names.arg = c("Item 1", "Item 3", "Item 6",
            "Item 9", "Item 11"))
    })
})