首页 > 解决方案 > RShiny 不会向服务器输出任何结果。'服务器错误(...):未使用的参数(输出=列表(, 函数 (x) x))'

问题描述

我的 Rshiny 应用程序不会放置我想要的相关图,我不确定为什么。运行代码时出现此错误。

Warning: Error in server: unused argument (output = list(<environment>, function (x) x))
[No stack trace available]
Error in server(...) : 
unused argument (output = list(<environment>, function (x) x))

这是我正在使用的代码:

library(shiny)
library(shinydashboard)
combined1 = read.csv("combined.csv", stringsAsFactors=F, na.strings=c(NA,"NA"," NA", "na"))



ui <- dashboardPage(
dashboardHeader(title = "NBA Draft"),
dashboardSidebar(),
dashboardBody(
  box(plotOutput("correlation_plot"), width = 8),
  box(
    selectInput("features", "Features:",
              c("Pts", "Ast", "Trb",
                "WS.48")), width = 4
  )
)
)



server <- function(input, outout){
  outout$correlation_plot <- renderPlot({
    plot(combined1$Pk, combined1[[input$Features]],
         xlab = "Pk", ylab = "Features")
 })

}


shinyApp(ui, server)

我不知道为什么会出现此错误,有人可以帮我吗?

标签: rservershinydashboardserver-error

解决方案


试试这个:

library(shiny)
library(shinydashboard)
combined1 = read.csv("combined.csv", stringsAsFactors=F, na.strings=c(NA,"NA"," NA", "na"))



ui <- dashboardPage(
dashboardHeader(title = "NBA Draft"),
dashboardSidebar(),
dashboardBody(
  box(plotOutput("correlation_plot"), width = 8),
  box(
    selectInput("features", "Features:",
              c("Pts", "Ast", "Trb",
                "WS.48")), width = 4
  )
)
)



server <- function(input, output){
  output$correlation_plot <- renderPlot({
    plot(combined1$Pk, combined1[[input$Features]],
         xlab = "Pk", ylab = "Features")
 })

}


shinyApp(ui, server)

该变量应称为输出而不是outout


推荐阅读