Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following code colorizes the panel backgrounds of a pairs plot in R. How can I colorize the diagonal panel (where the variable names are printed)? As you can see, I tried it but the variable names are not correctly aligned (for whatever reason).

count <- 0 
mypanel <- function(x, y, ...){

   count <<- count+1 
   bg <- if(count %in% c(1,4,9,12)) "#FDFF65" else "transparent"    ll <- par("usr") 
   rect(ll[1], ll[3], ll[2], ll[4], col=bg)    points(x, y, cex=0.5) 
}

mydiag.panel <- function(x, ...){

   ll <- par("usr") 
   rect(ll[1], ll[3], ll[2], ll[4], col="#FDFF65") }

U <- matrix(runif(4*500), ncol=4) 
pairs(U, panel=mypanel, diag.panel=mydiag.panel)
share|improve this question

1 Answer

up vote 2 down vote accepted

Explicitly setting label.pos = 0.5 seems to work for me:

pairs(U,panel = mypanel, diag.panel=mydiag.panel,label.pos = 0.5)

The default appears to be 0.5 + has.diag/3, where has.diag is set to TRUE when you specify your own custom diag.panel function, which ends up changing the default to 0.5 + 1/3. Honestly, I'm not sure why that would be.

Possibly the thinking is that if you define your own plotting function for the diagonals, the assumption is that you're plotting data in those panels, and so it makes sense to move the default label positioning away from the center of the panel...?

share|improve this answer
thanks, joran, perfectly solved. – Marius Hofert Mar 2 '12 at 15:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.