Nothing
bbag = function (data, factor, label=TRUE, projmethod, ...)
{
y <- t(data$y)
x = data$x
if(projmethod == "PCAproj")
{
sco <- PCAproj(y, k = 2, center = median)$scores
}
if(projmethod == "rapca")
{
sco = fdpca(x, data$y)$coeff[,2:3]
rownames(sco) = 1:ncol(data$y)
}
tmp <- compute.bagplot(sco[, 1], sco[, 2], factor = factor, verbose = FALSE)
if (tmp$is.one.dim == TRUE) {
warning("Bivariate principal component scores lie in one direction.")
}
plot.bagplot(tmp, col.loophull = gray(0.95), col.baghull = gray(0.8),
show.whiskers = FALSE, xlab = "PC score 1", ylab = "PC score 2",
...)
points(sco[, 1], sco[, 2], pch = 16, cex = 0.5, col = 1)
outliers <- as.numeric(rownames(tmp$pxy.outlier))
points(sco[outliers, 1], sco[outliers, 2], col = rainbow(length(outliers)),
pch = 16)
box()
if (length(outliers) != 0) {
if (label) {
year = as.numeric(rownames(y))
text(sco[outliers, 1] - 0.2, sco[outliers, 2], year[outliers],
adj = 1, col = rainbow(length(outliers)))
}
return(outliers)
}
}
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.