语法错误:数组声明中出现意外的令牌不必要的分号

时间:2018-10-18 18:57:29

标签: java arrays android-studio

我在声明我的数组列表时遇到问题,这是下面的代码。当我添加时 数组列表,它会给错误,如意外的令牌和不必要的分号 帮我解决这个问题。

library(DT)
library(shiny)

ui <- basicPage(
  h2("The mtcars data"),
  DT::dataTableOutput("mytable"),
  plotOutput('plot1')
)

server <- function(input, output) {
  mydat <- reactive({
    # eventually you'll support filtering here
    mtcars
  })    

  output$mytable = DT::renderDataTable({
    req(mydat())
    datatable(mydat(), filter = 'top')
  })

  output$plot1 <- renderPlot({
    req(mydat())
    plot(mydat()$wt, mydat()$mpg)
  })

}

shinyApp(ui, server)

0 个答案:

没有答案