Displaying 1 result from an estimated 1 matches for "sigma_mob".
Did you mean:
sigma_b
2012 Mar 26
0
Enhance Pairs Scatterplot Matrix
...hese panels I don't need axis. So I'd like to concentrate my axis in the lower panel, how can that be done?
3) Is it possible to label the axis e.g with the dimensions etc.?
Here my code so far and the result is attached as pdf:
cor.resp.log <- na.omit(data.frame(log(SIGMA_STAT),p,log(SIGMA_MOB)))
panel.cor <- function(x, y, digits=2, prefix="", cex.cor)
{
usr <- par("usr"); on.exit(par(usr))
par(usr = c(0, 1, 0, 1))
r <- abs(cor(x, y))
txt <- format(c(r, 0.123456789), digits=digits)[1]
txt <- paste(prefix, txt, sep="")
if(missing(cex.co...