R/panelcor.R

Defines functions panelcor

Documented in panelcor

panelcor <-
function(x, y, digits=2, prefix="", cex.cor, ...)
{
     usr <- par("usr"); on.exit(par(usr))
     par(usr = c(0, 1, 0, 1))
     r <- cor(x, y)
     txt <- format(c(r, 0.123456789), digits=digits)[1]
     txt <- paste(prefix, txt, sep="")
     if(missing(cex.cor)) cex <- 0.8/strwidth(txt)
     text(0.5, 0.5, txt, cex = cex * abs(r))
}
AndrewLJackson/siar documentation built on May 5, 2019, 5:59 a.m.