#' Modification of pairs plots to show histograms and correlation coefficients
#' This is not my code, but I can't find it in a package
#'
#' \code{pairs(DF, upper.panel = panel.points,
#' lower.panel = panel.cor, diag.panel = panel.hist)}
#'
panel.points<-function(x,y)
{
points(x,y,cex=0.25,pch=19)
tmp<-lm(y~x,na.action=na.omit)
abline(tmp,col='red')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.