Nothing
overPlotErrorPolygon <- function(x, y, err_y, col="grey", logPlot=FALSE, ...) {
# A function to superplot an error polygon around the data
yLower <- (y - err_y)
if(logPlot) {
yLower[which(yLower<=0)] <- 1
}
yHigher <- (y + err_y)
xPos <- c(x, x[length(x):1])
polygon(xPos, c(yLower, yHigher[length(yHigher):1]), col=col, ...)
}
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.