警告:$ <-中的错误:R脚本中的下标类型'language'无效

时间:2019-07-30 10:07:47

标签: r shiny

我正在尝试调用renderPlot()函数。

UI.r页面:

shinyUI(fluidPage(

  # Application title
  titlePanel("test"),
  sidebarLayout(
    ),
    # Show a plot of the generated distribution
    mainPanel(
       plotOutput("distPlot")
    )
  )
))

Server.r页面:

output$distPlot <- renderPlot({
plot(cars)
})

如果我设置断点,则会显示以下错误

Warning: Error in $<-: invalid subscript type 'language'

可能是问题所在。 谁能帮忙!

预先感谢

0 个答案:

没有答案