R Shiny 不会向服务器输出任何结果。 'Error in server(...) : unused argument (output = list(<environment>, function (x) x))'
RShiny will not output any results to the server. 'Error in server(...) : unused argument (output = list(<environment>, function (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)
我不知道为什么会出现此错误,有人可以帮助我吗?
试试这个:
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)
变量应该叫output而不是outout
我的 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)
我不知道为什么会出现此错误,有人可以帮助我吗?
试试这个:
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)
变量应该叫output而不是outout