Nothing
RobCor.plot <-
function (x, y, quan = 1/2, alpha = 0.025, colC=1, colR=1, ltyC=2, ltyR=1, ...)
{
# compare two correlation estimates (e.g. robust and classical) with plots
#
# x,y ... two data vectors where the correlation should be computed
# quan ... fraction of tolerated outliers (at most 1/2)
# alpha ... quantile of chisquare distribution for outlier cutoff
# colC, colR ... color for both ellipses
# ltyC, ltyR ... line type for both ellipses
# ... other graphics parameters
#
x <- as.matrix(cbind(x, y))
covr <- covMcd(x, cor = TRUE, alpha = quan)
cov.svd <- svd(cov(x), nv = 0)
covr.svd <- svd(covr$cov, nv = 0)
r <- cov.svd[["u"]] %*% diag(sqrt(cov.svd[["d"]]))
rr <- covr.svd[["u"]] %*% diag(sqrt(covr.svd[["d"]]))
e <- cbind(cos(c(0:100)/100 * 2 * pi) * sqrt(qchisq(1 - alpha,
2)), sin(c(0:100)/100 * 2 * pi) * sqrt(qchisq(1 - alpha,
2)))
tt <- t(r %*% t(e)) + rep(1, 101) %o% apply(x, 2, mean)
ttr <- t(rr %*% t(e)) + rep(1, 101) %o% covr$center
plot(x, xlim = c(min(c(x[, 1], tt[, 1], ttr[, 1])), max(c(x[,
1], tt[, 1], ttr[, 1]))), ylim = c(min(c(x[, 2], tt[,
2], ttr[, 2])), max(c(x[, 2], tt[, 2], ttr[, 2]))), ...)
title(main = list(paste("Pearson cor =", round(cor(x)[1,
2], 2), " "), col = colC))
title(main = list(paste(" Robust cor =",
round(covr$cor[1, 2], 2)), col = colR))
lines(tt[, 1], tt[, 2], type = "l", col = colC, lty = ltyC)
lines(ttr[, 1], ttr[, 2], type = "l", col = colR, lty = ltyR)
ret <- list(cor.cla = cor(x)[1, 2], cor.rob = covr$cor[1,
2])
ret
}
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.