Nothing
#' @export
#' @rdname plots
plotprcc <- function (obj, index.res = 1:dim(obj$res)[2], col='orange', ylab = NULL, ...) {
nres <- length(index.res)
nl <- floor(sqrt(nres))
nc <- ceiling(nres/nl)
opar <- par(mfrow=c(nl,nc))
on.exit(par(opar))
if(length(obj$res.names) > 0 && is.null(ylab)) ylab = obj$res.names[index.res]
this.ylab= ylab
for(i in 1:nres)
{
if (length(ylab) > 1) this.ylab = ylab[i]
plot(obj$prcc[[index.res[i]]], bg=col, ylab=this.ylab, ...)
abline(h=0, lty=2)
}
}
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.