Re: [R] visualize correlation matrix

2012-06-17 Thread Kevin Wright
You can also try the corrgram package. Kevin On Sun, Jun 17, 2012 at 4:06 AM, Christof Kluß wrote: > Hi > > is there a easy way to get something like > http://addictedtor.free.fr/graphiques/graphcode.php?graph=137 > > pairs(USJudgeRatings[,c(2:3,6,1,7)], >  lower.panel=panel.smooth, upper.panel

Re: [R] visualize correlation matrix

2012-06-17 Thread Rui Barradas
Hello, The answer is yes, there is an easy way of getting that graphic without the lower.panel and axis tickmarks. op <- par(xaxt="n", yaxt="n") pairs(USJudgeRatings[,c(2:3,6,1,7)], upper.panel=panel.cor) par(op) where panel.cor() is the function in the link. Hope this helps, Rui Barra