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=panel.cor) but without the "lower.panel" (and without numbers and ticks at the border.) thx Christof
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 Barradas Em 17-06-2012 10:06, Christof Klu? escreveu:> 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=panel.cor) > > but without the "lower.panel" (and without numbers and ticks at the border.) > > thx > Christof > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >
You can also try the corrgram package. Kevin On Sun, Jun 17, 2012 at 4:06 AM, Christof Klu? <ckluss at email.uni-kiel.de> 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=panel.cor) > > but without the "lower.panel" (and without numbers and ticks at the border.) > > thx > Christof > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.-- Kevin Wright