错误的corrplot.mixed在闪亮的仪表板中

时间:2018-03-21 11:57:28

标签: r shiny shinydashboard

我想使用corrplot.mixed()为所有数字变量显示相关图。但情节没有显示出来。

请检查我的代码

UI

                  fluidRow(
                    box(title = "Correlation Plot", width = 12, solidHeader = TRUE, status = "primary", 
                        collapsible = TRUE, plotOutput("plot3")))

服务器

  dataset_1 <- reactive({
    switch(input$Datasets,
           "Train" = Train(),
           "Test" = Test())
  }) 

 output$plot3 <- renderPlot({

   is.num <- sapply(dataset_1(), is.integer)
   df1 <- dataset_1()[, is.num]

   corrplot.mixed(df1, is.corr = FALSE)
   })

请查找错误

警告:矩阵错误:“dimnames”的长度&#39; [2]不等于数组范围

0 个答案:

没有答案