plot_ly没有在Shiny app中显示图形

时间:2017-06-05 13:33:23

标签: shiny plotly

我有一个闪亮的应用程序的问题。我的shinyapp没有显示图表。我有这个代码。我没有看到我的图表在闪亮的环境中,我在rstudio查看器中看到。

## app.R ##

    library("shiny")

setwd('C:/work')




ui <- dashboardPage(
  dashboardHeader(title = "Basic dashboard"),
  dashboardSidebar(),
  dashboardBody(

    fluidRow(
      plotOutput("plot", height = 250)),
      box(
        title = "Controls",
        selectInput("select",label="Select",
                    choices=setNames(as.list(data$prov), data$prov))
      )
    )
  )

server <- function(input, output){

  output$plot<- renderPlot({
    plot_ly(bbdd,x=~prov, y=~number, type='bar')

  })
}



shinyApp(ui, server)

它是我的第一个闪亮的应用程序,不要杀了我!

感谢

1 个答案:

答案 0 :(得分:3)

将plotOutput和renderPlot分别更改为 ly 输出和renderPlot ly 。你还需要加载绘图包和你的数据。