0

enter image description hereI would like to make a correlation matrix graph of 30 variables. I've used the corrgram R's function, however, the graph is great for a apresentation. Is it possible make another graph using R?

Adriana
  • 1
  • 1
  • 2
    Have you tried: http://www.sthda.com/english/wiki/correlation-matrix-a-quick-start-guide-to-analyze-format-and-visualize-a-correlation-matrix-using-r-software – TYZ Mar 27 '19 at 13:15
  • 1
    Welcome to Stack Overflow! Please reference how to make a [great reproducible example in R](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example). Share code that you've written so far, consider sharing a sample of your data using `dput()`, and explicitly explain where you've gotten stuck. – OTStats Mar 27 '19 at 13:16
  • And why you wasn´t happy with your graph? – Oka Mar 27 '19 at 13:33
  • Hi! The graph using corrgram got very big. I would like a graph more simple to put in a article. – Adriana Mar 27 '19 at 13:56
  • can you show your graph to see the starting point? – Oka Mar 27 '19 at 13:59
  • Sorry, but I don't kwon how can I put my graph here :( – Adriana Mar 27 '19 at 14:03
  • @Adriana You can use the instructions here https://meta.stackexchange.com/questions/75491/how-to-upload-an-image-to-a-post – Drj Mar 27 '19 at 14:19

2 Answers2

0

You can use the package corrplot. With the help of this package you can create a graphic of correlations.

TobKel
  • 1,293
  • 8
  • 20
0

You can give levelplot a try. You can find other nice plots and their code on this page too.

Newl
  • 310
  • 2
  • 12