Search code examples
rcorrelationdiagonal

How to have diagonal labels in R Corrgram?


Corrgram docs have been misleading, since 2012, as discussed in the email thread how to change variable names in corrgram diagonal about putting labels on the diagonal. Many users think wrongly that diag.panel=... is the solution but it is not as seen in the following, but I cannot use labels because it is still not yet documented

yes, the argument "labels" it's working fine!

It would be great if the docs will be be updated also with this already implemented feature

Code

library("corrgram")

ages <- seq(1,18)

corrgram(baseball,
  diag.labels=ages)

Output

There were 50 or more warnings (use warnings() to see the first 50)

Fig. 1 Current output without wanted labels on diagonal

enter image description here

R: 3.3.1
OS: Debian 8.5


Solution

  • Solution

    corrgram(baseball,
      labels=ages)
    

    Output

    enter image description here