Nothing
setMethod("[", signature(x="PredictionRegion"),
function(x, i, j, ..., drop=FALSE){
if(missing(i) & missing(j)) return(x)
if(!missing(i)){
xx <- lapply(x, function(x, i){
x$mu <- x$mu[i,,,drop=FALSE]
x$cov <- x$cov[i, , , drop=FALSE]
return(x)
}, i=i)
x <- as(xx, "PredictionRegion")
}
return(x)
})
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.