Question Visualisation CorPlot() Package: psych

Hey,
I try to visualize a correlation Matrix with CorPlot.

I wrote this code:
corPlot(y, method = "spearman", colors = FALSE, stars = TRUE,
diag = FALSE, upper = FALSE,
labels = c("Growth", "Inflation", "Unemployment", "Export", "Import", "City Block", "Euclidean", "Mahalanobis"),
main = "", show.legend = FALSE, min.length = 9, cex = 1)

And got this visualization:

There is an empty row and column how can I delete?

how about use ggcorrplot ?

ggplot can use theme_classic to set the background to blank.

install.packages("ggcorrplot")
library(ggcorrplot)
data(mtcars)
corr <- round(cor(mtcars), 1)
p.mat <- cor_pmat(mtcars)
ggcorrplot(corr, hc.order = TRUE, type = "lower",
           lab = TRUE)+
  theme_classic()

If you can show us your data, we may be able to suggest a specific solution.

Next time, it would be helpful if you could use markdowns for your questions so they are easier to read.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.