我想使用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]不等于数组范围