无法在R Shiny中显示散点图

时间:2019-06-17 02:56:47

标签: r

在我的代码中得到此错误:

  

tabsetPanel(type =“ tabs”,tabPanel(“ Scatterplot”,   plotOutput(“ scatterplot”))):缺少参数,没有默认值

我正在使用R Shiny创建此线性回归应用程序,但无法在我的仪表板上获取散点图,需要帮助!

 tabsetPanel(type = "tabs",
     tabPanel("Scatterplot", plotOutput("scatterplot")), 
     tabPanel("Distribution",
            fluidRow(
            column(6, plotOutput("distribution1")),
            column(6, plotOutput("distribution2")))
            ),
      tabPanel("Model Summary", verbatimTextOutput("summary")),
      )
)

1 个答案:

答案 0 :(得分:0)

您刚得到一个逗号并在结尾加上右括号,从而导致错误:

tabsetPanel(type = "tabs",
            tabPanel("Scatterplot", plotOutput("scatterplot")), 
            tabPanel("Distribution",
                     fluidRow(
                       column(6, plotOutput("distribution1")),
                       column(6, plotOutput("distribution2")))
            ),
            tabPanel("Model Summary", verbatimTextOutput("summary"))
)