Dodanie linii tożsamości do wykresów korelacji za pomocą polecenia pairs () w R

Podobny do aniechętny post, Chciałbym zmodyfikować następujący kod (z przykładu w komendzie R documentation for pairs ()):

## put (absolute) correlations on the upper panels,
## with size proportional to the correlations.
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 <- paste0(prefix, txt)
    if(missing(cex.cor)) cex.cor <- 0.8/strwidth(txt)
    text(0.5, 0.5, txt, cex = cex.cor * r)
}
pairs(USJudgeRatings, lower.panel = panel.smooth, upper.panel = panel.cor)

Zamiast linii lessowej, chcę linii tożsamości dla każdego wykresu. Sekret leży w funkcji $ "panel.smooth", ale nie wiem, jak go zmodyfikować.

questionAnswers(2)

yourAnswerToTheQuestion