Nothing
`jointlim` <-
function(X,Y) {
xma <- max(c(X[,1],Y[,1]))
xmi <- min(c(X[,1],Y[,1]))
yma <- max(c(X[,2],Y[,2]))
ymi <- min(c(X[,2],Y[,2]))
xlim <- c(xmi,xma)
ylim <- c(ymi,yma)
return(list(xlim=xlim,ylim=ylim))
}
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.