R Shiny - 没有这样的指数在1级

时间:2015-07-06 23:36:13

标签: r shiny-server shiny shinydashboard

尝试创建一个闪亮的应用程序,其中有一个情节,选定的点创建一个包含所述点的表。

找到我的错误来源时遇到了一些困难,但是已经能够将其缩小到这些小部分。

library(ggplot2)
library(DT)

ui <- shinyUI(fluidPage(
  fluidRow(uiOutput("plotui")),
  fluidRow(dataTableOutput("plot_brushed_points"))
))

server <- shinyServer(function(input, output){
  output$plot <- renderPlot(plot(mtcars$wt,mtcars$mpg))
  output$plotui <- renderUI(plotOutput("plot",brush = brushOpts("plot_brush")))
  output$plot_brushed_points <- renderDataTable(brushedPoints(mtcars,input$plot_brush,mtcars$wt,mtcars$mpg))
})

myapp <- shinyApp(ui, server)
myapp

我收到的错误如下:

Error in .subset2(x, i, exact = exact) : no such index at level 1

作为参考,绘图和表格均按要求显示,但当您选择点时,表格将消失。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

您应该发送变量名而不是数据本身。尝试更改:

brushedPoints(mtcars,input$plot_brush,mtcars$wt,mtcars$mpg)

使用:

brushedPoints(mtcars,input$plot_brush,"wt","mpg")