Title: | Geometric Median, k-Medians Clustering and Robust Median PCA |
---|---|
Description: | Fast algorithms for robust estimation with large samples of multivariate observations. Estimation of the geometric median, robust k-Gmedian clustering, and robust PCA based on the Gmedian covariation matrix. |
Authors: | Herve Cardot |
Maintainer: | Herve Cardot <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.2.7 |
Built: | 2024-11-06 06:33:59 UTC |
Source: | CRAN |
The geometric median (also called spatial median or L1 median) is a robust multivariate indicator of central position. This library provides fast estimation procedures that can handle rapidly large samples of high dimensional data. Function Gmedian
computes the geometric median of a numerical data set with averaged stochastic gradient algorithms, whereas GmedianCov
computes the median covariation matrix, a useful indicator for robust PCA. Robust clustering, based on the geometric k-medians, can also be performed with the same type of recursive algorithm thanks to kGmedian
.
Less fast estimation procedures based on Weiszfeld's algorithm are also available : function Weiszfeld
computes the geometric median whereas WeiszfeldCov
computes the median covariation matrix. These procedures may be preferred for small and moderate sample sizes. Note that weighting statistical units (for example with survey sampling weights) is allowed.
Package: | Gmedian |
Type: | Package |
Title: | Geometric Median, k-Medians Clustering and Robust Median PCA |
Version: | 1.2.7 |
Date: | 2022-08-06 |
Author: | Herve Cardot |
Maintainer: | Herve Cardot <[email protected]> |
Description: | Fast algorithms for robust estimation with large samples of multivariate observations. Estimation of the geometric median, robust k-Gmedian clustering, and robust PCA based on the Gmedian covariation matrix. |
License: | GPL (>= 2) |
Depends: | R (>= 3.0.0) |
Imports: | Rcpp (>= 0.12.6), RSpectra, robustbase |
LinkingTo: | Rcpp, RcppArmadillo, RSpectra |
NeedsCompilation: | yes |
Packaged: | 2022-06-08 13:22:37 UTC; hcardot |
Repository: | CRAN |
Date/Publication: | 2022-06-08 14:00:02 UTC |
Index of help topics:
Gmedian Gmedian Gmedian-package Geometric Median, k-Medians Clustering and Robust Median PCA GmedianCov GmedianCov Weiszfeld Weiszfeld WeiszfeldCov WeiszfeldCov kGmedian kGmedian
Herve Cardot
Maintainer: Herve Cardot <[email protected]>
Cardot, H., Cenac, P. and Zitt, P-A. (2013). Efficient and fast estimation of the geometric median in Hilbert spaces with an averaged stochastic gradient algorithm. Bernoulli, 19, 18-43.
Cardot, H. and Godichon-Baggioni, A. (2017). Fast Estimation of the Median Covariation Matrix with Application to Online Robust Principal Component7s Analysis. TEST, 26, 461-480.
Cardot, H., Cenac, P. and Monnez, J-M. (2012). A fast and recursive algorithm for clustering large datasets with k-medians. Computational Statistics and Data Analysis, 56, 1434-1449.
Lardin, P., Cardot, H. and Goga, C. (2014). Analyzing large datasets of functional data : a survey sampling point of view. Journal de la SFdS, 155, 70-94.
Vardi, Y. and Zhang, C.-H. (2000). The multivariate L1-median and associated data depth. Proc. Natl. Acad. Sci. USA, 97(4):1423-1426.
Computes recursively the Geometric median (also named spatial median or L1-median) with a fast averaged stochastic gradient algorithms that can deal rapidly with large samples of high dimensional data.
Gmedian(X, init = NULL, gamma = 2, alpha = 0.75, nstart=2, epsilon=1e-08)
Gmedian(X, init = NULL, gamma = 2, alpha = 0.75, nstart=2, epsilon=1e-08)
X |
Data matrix, with n (rows) observations in dimension d (columns). |
init |
When |
gamma |
Value (positive) of the constant controling the descent steps (see details). |
alpha |
Rate of decrease of the descent steps (see details). Should satisfy |
nstart |
Number of times the algorithm is ran over all the data set. |
epsilon |
Numerical tolerance. By defaut set to 1e-08. |
The recursive averaged algorithm is described in Cardot, Cenac, Zitt (2013), with descent steps defined as .
Vector of the geometric median.
Cardot, H., Cenac, P. and Zitt, P-A. (2013). Efficient and fast estimation of the geometric median in Hilbert spaces with an averaged stochastic gradient algorithm. Bernoulli, 19, 18-43.
See also GmedianCov
, kGmedian
and Weiszfeld
.
## Simulated data - Brownian paths n <- 1e2 d <- 100 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) ## Computation speed system.time(replicate(10, { median.est = Gmedian(x)})) system.time(replicate(10, { mean.est = apply(x,2,mean)})) ## ## Accuracy with contaminated data n <- 1e03 d <- 10 n.contaminated <- 0.05*n ## 5% of contaminated observations n.experiment <- 100 err.L2 <- matrix(NA,ncol=3,nrow=n.experiment) colnames(err.L2) = c("mean (no contam.)", "mean (contam.)","Gmedian") for (n.sim in 1:n.experiment){ x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) err.L2[n.sim,1] <- sum((apply(x,2,mean))^2/d) ind.contaminated <- sample(1:n,n.contaminated) ## contam. units x[ind.contaminated,] <- 5 err.L2[n.sim,2] <- sum((apply(x,2,mean))^2/d) err.L2[n.sim,3] <- sum(Gmedian(x)^2/d) } boxplot(err.L2,main="L2 error")
## Simulated data - Brownian paths n <- 1e2 d <- 100 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) ## Computation speed system.time(replicate(10, { median.est = Gmedian(x)})) system.time(replicate(10, { mean.est = apply(x,2,mean)})) ## ## Accuracy with contaminated data n <- 1e03 d <- 10 n.contaminated <- 0.05*n ## 5% of contaminated observations n.experiment <- 100 err.L2 <- matrix(NA,ncol=3,nrow=n.experiment) colnames(err.L2) = c("mean (no contam.)", "mean (contam.)","Gmedian") for (n.sim in 1:n.experiment){ x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) err.L2[n.sim,1] <- sum((apply(x,2,mean))^2/d) ind.contaminated <- sample(1:n,n.contaminated) ## contam. units x[ind.contaminated,] <- 5 err.L2[n.sim,2] <- sum((apply(x,2,mean))^2/d) err.L2[n.sim,3] <- sum(Gmedian(x)^2/d) } boxplot(err.L2,main="L2 error")
Computes recursively the Geometric median and the (geometric) median covariation matrix with fast averaged stochastic gradient algorithms. The estimation of the Geometric median is performed first and then the median covariation matrix is estimated, as well as its leading eigenvectors. The original recursive estimator of the median covariation matrix may not be a non negative matrix. A fast projected estimator onto the convex closed cone of the non negative matrices allows to get a non negative solution.
GmedianCov(X, init=NULL, nn=TRUE, scores=2, gamma=2, gc=2, alpha=0.75, nstart=1)
GmedianCov(X, init=NULL, nn=TRUE, scores=2, gamma=2, gc=2, alpha=0.75, nstart=1)
X |
Data matrix, with n observations (rows) in dimension d (columns). |
init |
When |
nn |
When |
scores |
An integer |
gamma |
Value (positive) of the constant controling the descent steps (see details) for the algorithm computing median. |
gc |
Value (positive) of the constant controling the descent steps (see details) for algorithm computing the median covariation matrix |
alpha |
Rate of decrease of the descent steps, |
nstart |
Number of time the algorithms are ran. |
The (fast) computation of the eigenvectors is performed by eigs_sym
of package RSpectra
.
See Cardot, H. and Godichon-Baggioni (2017) for more details on the recursive algorithm. See also Gmedian
.
When nn=TRUE
, the descent step is bounded above so that the solution remains non negative at each iteration.
The principal components standard deviation is estimed robustly thanks to function scaleTau2
from package robustbase
.
median |
Vector of the geometric median |
covmedian |
Median covariation matrix |
vectors |
The |
scores |
Principal component scores corresponding to the |
sdev |
The |
Cardot, H., Cenac, P. and Zitt, P-A. (2013). Efficient and fast estimation of the geometric median in Hilbert spaces with an averaged stochastic gradient algorithm. Bernoulli, 19, 18-43.
Cardot, H. and Godichon-Baggioni, A. (2017). Fast Estimation of the Median Covariation Matrix with Application to Online Robust Principal Components Analysis. TEST, 26, 461-480.
See also Gmedian
and WeiszfeldCov
.
## Simulated data - Brownian paths n <- 1e3 d <- 20 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) ## Estimation median.est <- GmedianCov(x) par(mfrow=c(1,2)) image(median.est$covmedian) ## median covariation function plot(c(1:d)/d,median.est$vectors[,1]*sqrt(d),type="l",xlab="Time", ylab="Eigenvectors",ylim=c(-1.4,1.4)) lines(c(1:d)/d,median.est$vectors[,2]*sqrt(d),lty=2)
## Simulated data - Brownian paths n <- 1e3 d <- 20 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) ## Estimation median.est <- GmedianCov(x) par(mfrow=c(1,2)) image(median.est$covmedian) ## median covariation function plot(c(1:d)/d,median.est$vectors[,1]*sqrt(d),type="l",xlab="Time", ylab="Eigenvectors",ylim=c(-1.4,1.4)) lines(c(1:d)/d,median.est$vectors[,2]*sqrt(d),lty=2)
Fast k-medians clustering based on recursive averaged stochastic gradient algorithms.
The procedure is similar to the kmeans
clustering technique performed recursively with the MacQueen
algorithm. The advantage of the kGmedian algorithm compared to MacQueen strategy is that it deals with sum of norms instead of sum of squared norms, ensuring a more robust behaviour against outlying values.
kGmedian(X, ncenters=2, gamma=1, alpha=0.75, nstart = 10, nstartkmeans = 10, iter.max = 20)
kGmedian(X, ncenters=2, gamma=1, alpha=0.75, nstart = 10, nstartkmeans = 10, iter.max = 20)
X |
matrix, with n observations (rows) in dimension d (columns). |
ncenters |
Either the number of clusters, say k, or a set of initial (distinct) cluster centres. If a number, the initial centres are chosen as the output of the |
gamma |
Value of the constant controling the descent steps (see details). |
alpha |
Rate of decrease of the descent steps. |
nstart |
Number of times the algorithm is ran, with random sets of initialization centers chosen among the observations. |
nstartkmeans |
Number of initialization points in the |
iter.max |
Maximum number of iterations considered in the |
See Cardot, Cenac and Monnez (2012).
cluster |
A vector of integers (from 1:k) indicating the cluster to which each point is allocated. |
centers |
A matrix of cluster centres. |
withinsrs |
Vector of within-cluster sum of norms, one component per cluster. |
size |
The number of points in each cluster. |
Cardot, H., Cenac, P. and Monnez, J-M. (2012). A fast and recursive algorithm for clustering large datasets with k-medians. Computational Statistics and Data Analysis, 56, 1434-1449.
Cardot, H., Cenac, P. and Zitt, P-A. (2013). Efficient and fast estimation of the geometric median in Hilbert spaces with an averaged stochastic gradient algorithm. Bernoulli, 19, 18-43.
MacQueen, J. (1967). Some methods for classification and analysis of multivariate observations. In Proceedings of the Fifth Berkeley Symposium on Mathematical Statistics and Probability, eds L. M. Le Cam and J. Neyman, 1, pp. 281-297. Berkeley, CA: University of California Press.
# a 2-dimensional example x <- rbind(matrix(rnorm(100, sd = 0.3), ncol = 2), matrix(rnorm(100, mean = 1, sd = 0.3), ncol = 2)) colnames(x) <- c("x", "y") cl.kmeans <- kmeans(x, 2) cl.kmedian <- kGmedian(x) par(mfrow=c(1,2)) plot(x, col = cl.kmeans$cluster, main="kmeans") points(cl.kmeans$centers, col = 1:2, pch = 8, cex = 2) plot(x, col = cl.kmedian$cluster, main="kmedian") points(cl.kmedian$centers, col = 1:2, pch = 8, cex = 2)
# a 2-dimensional example x <- rbind(matrix(rnorm(100, sd = 0.3), ncol = 2), matrix(rnorm(100, mean = 1, sd = 0.3), ncol = 2)) colnames(x) <- c("x", "y") cl.kmeans <- kmeans(x, 2) cl.kmedian <- kGmedian(x) par(mfrow=c(1,2)) plot(x, col = cl.kmeans$cluster, main="kmeans") points(cl.kmeans$centers, col = 1:2, pch = 8, cex = 2) plot(x, col = cl.kmedian$cluster, main="kmedian") points(cl.kmedian$centers, col = 1:2, pch = 8, cex = 2)
Computes the Geometric median (also named spatial median or L1-median) with Weiszfeld's algorithm.
Weiszfeld(X, weights = NULL, epsilon=1e-08, nitermax = 100)
Weiszfeld(X, weights = NULL, epsilon=1e-08, nitermax = 100)
X |
Data matrix, with n (rows) observations in dimension d (columns). |
weights |
When |
epsilon |
Numerical tolerance. By defaut 1e-08. |
nitermax |
Maximum number of iterations of the algorithm. By default set to 100. |
Weizfeld's algorithm (see Vardi and Zhang, 2000) is fast and accurate and can deal with large samples of high dimension data. However it is not as fast as the recursive approach proposed in Gmedian
, which may be preferred for very large samples in high dimension.
Weights can be given for statistical units, allowing to deal with data drawn from unequal probability sampling designs (see Lardin-Puech, Cardot and Goga, 2014).
median |
Vector of the geometric median. |
iter |
Number of iterations |
Lardin-Puech, P., Cardot, H. and Goga, C. (2014). Analysing large datasets of functional data: a survey sampling point of view, J. de la SFdS, 155(4), 70-94.
Vardi, Y. and Zhang, C.-H. (2000). The multivariate L1-median and associated data depth. Proc. Natl. Acad. Sci. USA, 97(4):1423-1426.
See also Gmedian
and WeiszfeldCov
.
## Robustness of the geometric median of n=3 points in dimension d=2. a1 <- c(-1,0); a2 <- c(1,0); a3 <-c(0,1) data.mat <- rbind(a1,a2,a3) plot(data.mat,xlab="x",ylab="y") med.est <- Weiszfeld(data.mat) points(med.est$median,pch=19) ### weighted units poids = c(3/2,1,1) plot(data.mat,xlab="x",ylab="y") med.est <- Weiszfeld(data.mat,weights=poids) plot(data.mat,xlab="x",ylab="y") points(med.est$median,pch=19) ## outlier data.mat[3,] <- c(0,10) plot(data.mat,xlab="x",ylab="y") med.est <- Weiszfeld(data.mat) points(med.est$median,pch=19) ## Computation speed ## Simulated data - Brownian paths n <- 1e2 ## choose n <- 1e5 for better evaluation d <- 20 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) system.time(replicate(10, { median.est = Weiszfeld(x)})) system.time(replicate(10, { median.est = Gmedian(x)})) system.time(replicate(10, { mean.est = apply(x,2,mean)}))
## Robustness of the geometric median of n=3 points in dimension d=2. a1 <- c(-1,0); a2 <- c(1,0); a3 <-c(0,1) data.mat <- rbind(a1,a2,a3) plot(data.mat,xlab="x",ylab="y") med.est <- Weiszfeld(data.mat) points(med.est$median,pch=19) ### weighted units poids = c(3/2,1,1) plot(data.mat,xlab="x",ylab="y") med.est <- Weiszfeld(data.mat,weights=poids) plot(data.mat,xlab="x",ylab="y") points(med.est$median,pch=19) ## outlier data.mat[3,] <- c(0,10) plot(data.mat,xlab="x",ylab="y") med.est <- Weiszfeld(data.mat) points(med.est$median,pch=19) ## Computation speed ## Simulated data - Brownian paths n <- 1e2 ## choose n <- 1e5 for better evaluation d <- 20 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) system.time(replicate(10, { median.est = Weiszfeld(x)})) system.time(replicate(10, { median.est = Gmedian(x)})) system.time(replicate(10, { mean.est = apply(x,2,mean)}))
Estimation of the Geometric median covariation matrix with Weiszfeld's algorithm. Weights (such as sampling weights) for statistical units are allowed.
WeiszfeldCov(X, weights=NULL, scores=2, epsilon=1e-08, nitermax = 100)
WeiszfeldCov(X, weights=NULL, scores=2, epsilon=1e-08, nitermax = 100)
X |
Data matrix, with n (rows) observations in dimension d (columns). |
weights |
When |
scores |
An integer |
epsilon |
Numerical tolerance. By defaut 1e-08. |
nitermax |
Maxium number of iterations of the algorithm. By default set to 100. |
This fast and accurate iterative algorithm can deal with moderate size datasets. For large datasets use preferably GmedianCov
, if fast estimations are required.
Weights can be given for statistical units, allowing to deal with data drawn from unequal probability sampling designs (see Lardin-Puech, Cardot and Goga, 2014). The principal components standard deviation is estimed robustly thanks to function scaleTau2
from package robustbase
.
median |
Vector of the geometric median |
covmedian |
Median covariation matrix |
vectors |
The |
scores |
Principal component scores corresponding to the |
sdev |
The |
iterm |
Number of iterations needed to estimate the median |
itercov |
Number of iterations needed to estimate the median covariation matrix. |
Cardot, H. and Godichon-Baggioni, A. (2017). Fast Estimation of the Median Covariation Matrix with Application to Online Robust Principal Components Analysis. TEST, 26, 461-480.
Lardin-Puech, P., Cardot, H. and Goga, C. (2014). Analysing large datasets of functional data: a survey sampling point of view, Journal de la Soc. Fr. de Statis., 155(4), 70-94.
See also Weiszfeld
and GmedianCov
.
## Simulated data - Brownian paths n <- 1e3 d <- 20 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) ## Estimation median.est <- WeiszfeldCov(x) par(mfrow=c(1,2)) image(median.est$covmedian) ## median covariation function plot(c(1:d)/d,median.est$vectors[,1]*sqrt(d),type="l",xlab="Time", ylab="Eigenvectors",ylim=c(-1.4,1.4)) lines(c(1:d)/d,median.est$vectors[,2]*sqrt(d),lty=2)
## Simulated data - Brownian paths n <- 1e3 d <- 20 x <- matrix(rnorm(n*d,sd=1/sqrt(d)), n, d) x <- t(apply(x,1,cumsum)) ## Estimation median.est <- WeiszfeldCov(x) par(mfrow=c(1,2)) image(median.est$covmedian) ## median covariation function plot(c(1:d)/d,median.est$vectors[,1]*sqrt(d),type="l",xlab="Time", ylab="Eigenvectors",ylim=c(-1.4,1.4)) lines(c(1:d)/d,median.est$vectors[,2]*sqrt(d),lty=2)