Nothing
tspairs <-
function(x, main=NA, pt.col=astsa.col(4,.6), pt.size=1.1, lab.size=1.25,
title.size=1.5, scale=1, corr=TRUE, smooth=TRUE, lwl=1, lwc=2, gg=FALSE,
hist.diag=TRUE, col.diag=4, location='topright', ...)
{
nser <- NCOL(x)
if (nser < 2) stop('need at least 2 series')
old.par <- par(no.readonly = TRUE)
colnames(x) = colnames(x, do.NULL=FALSE, prefix= "Ser.")
topper = ifelse(is.na(main),0,2)
Corr = cor(x)
par(mfrow = c(nser, nser), mgp=c(1.6,.6,0), oma = c(.25,.25,.1+topper,.1)*scale)
par(cex = par('cex')*scale)
for (j in 1:nser) for (i in 1:nser) {
if (i==j) {
par(bty='l')
if (hist.diag) {
xh <- hist(x[,i], plot = FALSE)
tsplot(xh$counts, ylab=NA, xlab=NA, type='n', gg=gg, main=NA, minor=FALSE,
xlim=range(xh$breaks), ylim=c(0, max(xh$counts)), ...)
hist(x[,i], col=adjustcolor(col.diag,.5), border=col.diag, axes=FALSE, add=TRUE)
if (gg) box(col=gray(1))
} else {
tsplot(x[,i], ylab=NA, xlab=NA, col=col.diag, gg=gg, main=NA, ...)
}
} else {
par(bty='o')
tsplot(x[,i], x[,j], type='p', xlab=NA, ylab=NA,
margins=c(0,0,-.8,0)+.2, col=pt.col, cex=pt.size, gg=gg, ...)
if (smooth) { lines(lowess(x[,i], x[,j]), col=lwc, lwd=lwl) }
if (corr) {
if (gg) { bgc=gray(.92,.3) } else { bgc=gray(1,.3) }
legend(location, legend=format(round(Corr[i,j], digits=2), nsmall=2),
box.col=gray(1,0), bg=bgc, adj=.25)
}
if (gg) { box(col=gray(.8)) } else { box(col=gray(.62)) }
}
if (i == 1) {
title(ylab=colnames(x)[j], xpd = NA, cex.lab=lab.size ) }
if (j == nser) {
title(xlab=colnames(x)[i], xpd = NA, cex.lab=lab.size) }
mtext(main, side=3, line=0, outer=TRUE, font = 1, cex=title.size*scale)
}
on.exit(par(old.par))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.