1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
.. _covariance:
===================================================
Covariance estimation
===================================================
.. currentmodule:: sklearn.covariance
Many statistical problems require the estimation of a
population's covariance matrix, which can be seen as an estimation of
data set scatter plot shape. Most of the time, such an estimation has
to be done on a sample whose properties (size, structure, homogeneity)
have a large influence on the estimation's quality. The
:mod:`sklearn.covariance` package provides tools for accurately estimating
a population's covariance matrix under various settings.
We assume that the observations are independent and identically
distributed (i.i.d.).
Empirical covariance
====================
The covariance matrix of a data set is known to be well approximated
by the classical *maximum likelihood estimator* (or "empirical
covariance"), provided the number of observations is large enough
compared to the number of features (the variables describing the
observations). More precisely, the Maximum Likelihood Estimator of a
sample is an asymptotically unbiased estimator of the corresponding
population's covariance matrix.
The empirical covariance matrix of a sample can be computed using the
:func:`empirical_covariance` function of the package, or by fitting an
:class:`EmpiricalCovariance` object to the data sample with the
:meth:`EmpiricalCovariance.fit` method. Be careful that results depend
on whether the data are centered, so one may want to use the
``assume_centered`` parameter accurately. More precisely, if
``assume_centered=False``, then the test set is supposed to have the
same mean vector as the training set. If not, both should be centered
by the user, and ``assume_centered=True`` should be used.
.. topic:: Examples:
* See :ref:`sphx_glr_auto_examples_covariance_plot_covariance_estimation.py` for
an example on how to fit an :class:`EmpiricalCovariance` object
to data.
.. _shrunk_covariance:
Shrunk Covariance
=================
Basic shrinkage
---------------
Despite being an asymptotically unbiased estimator of the covariance matrix,
the Maximum Likelihood Estimator is not a good estimator of the
eigenvalues of the covariance matrix, so the precision matrix obtained
from its inversion is not accurate. Sometimes, it even occurs that the
empirical covariance matrix cannot be inverted for numerical
reasons. To avoid such an inversion problem, a transformation of the
empirical covariance matrix has been introduced: the ``shrinkage``.
In scikit-learn, this transformation (with a user-defined shrinkage
coefficient) can be directly applied to a pre-computed covariance with
the :func:`shrunk_covariance` method. Also, a shrunk estimator of the
covariance can be fitted to data with a :class:`ShrunkCovariance` object
and its :meth:`ShrunkCovariance.fit` method. Again, results depend on
whether the data are centered, so one may want to use the
``assume_centered`` parameter accurately.
Mathematically, this shrinkage consists in reducing the ratio between the
smallest and the largest eigenvalues of the empirical covariance matrix.
It can be done by simply shifting every eigenvalue according to a given
offset, which is equivalent of finding the l2-penalized Maximum
Likelihood Estimator of the covariance matrix. In practice, shrinkage
boils down to a simple a convex transformation : :math:`\Sigma_{\rm
shrunk} = (1-\alpha)\hat{\Sigma} + \alpha\frac{{\rm
Tr}\hat{\Sigma}}{p}\rm Id`.
Choosing the amount of shrinkage, :math:`\alpha` amounts to setting a
bias/variance trade-off, and is discussed below.
.. topic:: Examples:
* See :ref:`sphx_glr_auto_examples_covariance_plot_covariance_estimation.py` for
an example on how to fit a :class:`ShrunkCovariance` object
to data.
Ledoit-Wolf shrinkage
---------------------
In their 2004 paper [1]_, O. Ledoit and M. Wolf propose a formula
to compute the optimal shrinkage coefficient :math:`\alpha` that
minimizes the Mean Squared Error between the estimated and the real
covariance matrix.
The Ledoit-Wolf estimator of the covariance matrix can be computed on
a sample with the :meth:`ledoit_wolf` function of the
:mod:`sklearn.covariance` package, or it can be otherwise obtained by
fitting a :class:`LedoitWolf` object to the same sample.
.. note:: **Case when population covariance matrix is isotropic**
It is important to note that when the number of samples is much larger than
the number of features, one would expect that no shrinkage would be
necessary. The intuition behind this is that if the population covariance
is full rank, when the number of sample grows, the sample covariance will
also become positive definite. As a result, no shrinkage would necessary
and the method should automatically do this.
This, however, is not the case in the Ledoit-Wolf procedure when the
population covariance happens to be a multiple of the identity matrix. In
this case, the Ledoit-Wolf shrinkage estimate approaches 1 as the number of
samples increases. This indicates that the optimal estimate of the
covariance matrix in the Ledoit-Wolf sense is multiple of the identity.
Since the population covariance is already a multiple of the identity
matrix, the Ledoit-Wolf solution is indeed a reasonable estimate.
.. topic:: Examples:
* See :ref:`sphx_glr_auto_examples_covariance_plot_covariance_estimation.py` for
an example on how to fit a :class:`LedoitWolf` object to data and
for visualizing the performances of the Ledoit-Wolf estimator in
terms of likelihood.
.. topic:: References:
.. [1] O. Ledoit and M. Wolf, "A Well-Conditioned Estimator for Large-Dimensional
Covariance Matrices", Journal of Multivariate Analysis, Volume 88, Issue 2,
February 2004, pages 365-411.
.. _oracle_approximating_shrinkage:
Oracle Approximating Shrinkage
------------------------------
Under the assumption that the data are Gaussian distributed, Chen et
al. [2]_ derived a formula aimed at choosing a shrinkage coefficient that
yields a smaller Mean Squared Error than the one given by Ledoit and
Wolf's formula. The resulting estimator is known as the Oracle
Shrinkage Approximating estimator of the covariance.
The OAS estimator of the covariance matrix can be computed on a sample
with the :meth:`oas` function of the :mod:`sklearn.covariance`
package, or it can be otherwise obtained by fitting an :class:`OAS`
object to the same sample.
.. figure:: ../auto_examples/covariance/images/sphx_glr_plot_covariance_estimation_001.png
:target: ../auto_examples/covariance/plot_covariance_estimation.html
:align: center
:scale: 65%
Bias-variance trade-off when setting the shrinkage: comparing the
choices of Ledoit-Wolf and OAS estimators
.. topic:: References:
.. [2] :arxiv:`"Shrinkage algorithms for MMSE covariance estimation.",
Chen, Y., Wiesel, A., Eldar, Y. C., & Hero, A. O.
IEEE Transactions on Signal Processing, 58(10), 5016-5029, 2010.
<0907.4698>`
.. topic:: Examples:
* See :ref:`sphx_glr_auto_examples_covariance_plot_covariance_estimation.py` for
an example on how to fit an :class:`OAS` object
to data.
* See :ref:`sphx_glr_auto_examples_covariance_plot_lw_vs_oas.py` to visualize the
Mean Squared Error difference between a :class:`LedoitWolf` and
an :class:`OAS` estimator of the covariance.
.. figure:: ../auto_examples/covariance/images/sphx_glr_plot_lw_vs_oas_001.png
:target: ../auto_examples/covariance/plot_lw_vs_oas.html
:align: center
:scale: 75%
.. _sparse_inverse_covariance:
Sparse inverse covariance
==========================
The matrix inverse of the covariance matrix, often called the precision
matrix, is proportional to the partial correlation matrix. It gives the
partial independence relationship. In other words, if two features are
independent conditionally on the others, the corresponding coefficient in
the precision matrix will be zero. This is why it makes sense to
estimate a sparse precision matrix: the estimation of the covariance
matrix is better conditioned by learning independence relations from
the data. This is known as *covariance selection*.
In the small-samples situation, in which ``n_samples`` is on the order
of ``n_features`` or smaller, sparse inverse covariance estimators tend to work
better than shrunk covariance estimators. However, in the opposite
situation, or for very correlated data, they can be numerically unstable.
In addition, unlike shrinkage estimators, sparse estimators are able to
recover off-diagonal structure.
The :class:`GraphicalLasso` estimator uses an l1 penalty to enforce sparsity on
the precision matrix: the higher its ``alpha`` parameter, the more sparse
the precision matrix. The corresponding :class:`GraphicalLassoCV` object uses
cross-validation to automatically set the ``alpha`` parameter.
.. figure:: ../auto_examples/covariance/images/sphx_glr_plot_sparse_cov_001.png
:target: ../auto_examples/covariance/plot_sparse_cov.html
:align: center
:scale: 60%
*A comparison of maximum likelihood, shrinkage and sparse estimates of
the covariance and precision matrix in the very small samples
settings.*
.. note:: **Structure recovery**
Recovering a graphical structure from correlations in the data is a
challenging thing. If you are interested in such recovery keep in mind
that:
* Recovery is easier from a correlation matrix than a covariance
matrix: standardize your observations before running :class:`GraphicalLasso`
* If the underlying graph has nodes with much more connections than
the average node, the algorithm will miss some of these connections.
* If your number of observations is not large compared to the number
of edges in your underlying graph, you will not recover it.
* Even if you are in favorable recovery conditions, the alpha
parameter chosen by cross-validation (e.g. using the
:class:`GraphicalLassoCV` object) will lead to selecting too many edges.
However, the relevant edges will have heavier weights than the
irrelevant ones.
The mathematical formulation is the following:
.. math::
\hat{K} = \mathrm{argmin}_K \big(
\mathrm{tr} S K - \mathrm{log} \mathrm{det} K
+ \alpha \|K\|_1
\big)
Where :math:`K` is the precision matrix to be estimated, and :math:`S` is the
sample covariance matrix. :math:`\|K\|_1` is the sum of the absolute values of
off-diagonal coefficients of :math:`K`. The algorithm employed to solve this
problem is the GLasso algorithm, from the Friedman 2008 Biostatistics
paper. It is the same algorithm as in the R ``glasso`` package.
.. topic:: Examples:
* :ref:`sphx_glr_auto_examples_covariance_plot_sparse_cov.py`: example on synthetic
data showing some recovery of a structure, and comparing to other
covariance estimators.
* :ref:`sphx_glr_auto_examples_applications_plot_stock_market.py`: example on real
stock market data, finding which symbols are most linked.
.. topic:: References:
* Friedman et al, `"Sparse inverse covariance estimation with the
graphical lasso" <https://biostatistics.oxfordjournals.org/content/9/3/432.short>`_,
Biostatistics 9, pp 432, 2008
.. _robust_covariance:
Robust Covariance Estimation
============================
Real data sets are often subject to measurement or recording
errors. Regular but uncommon observations may also appear for a variety
of reasons. Observations which are very uncommon are called
outliers.
The empirical covariance estimator and the shrunk covariance
estimators presented above are very sensitive to the presence of
outliers in the data. Therefore, one should use robust
covariance estimators to estimate the covariance of its real data
sets. Alternatively, robust covariance estimators can be used to
perform outlier detection and discard/downweight some observations
according to further processing of the data.
The ``sklearn.covariance`` package implements a robust estimator of covariance,
the Minimum Covariance Determinant [3]_.
Minimum Covariance Determinant
------------------------------
The Minimum Covariance Determinant estimator is a robust estimator of
a data set's covariance introduced by P.J. Rousseeuw in [3]_. The idea
is to find a given proportion (h) of "good" observations which are not
outliers and compute their empirical covariance matrix. This
empirical covariance matrix is then rescaled to compensate the
performed selection of observations ("consistency step"). Having
computed the Minimum Covariance Determinant estimator, one can give
weights to observations according to their Mahalanobis distance,
leading to a reweighted estimate of the covariance matrix of the data
set ("reweighting step").
Rousseeuw and Van Driessen [4]_ developed the FastMCD algorithm in order
to compute the Minimum Covariance Determinant. This algorithm is used
in scikit-learn when fitting an MCD object to data. The FastMCD
algorithm also computes a robust estimate of the data set location at
the same time.
Raw estimates can be accessed as ``raw_location_`` and ``raw_covariance_``
attributes of a :class:`MinCovDet` robust covariance estimator object.
.. topic:: References:
.. [3] P. J. Rousseeuw. Least median of squares regression.
J. Am Stat Ass, 79:871, 1984.
.. [4] A Fast Algorithm for the Minimum Covariance Determinant Estimator,
1999, American Statistical Association and the American Society
for Quality, TECHNOMETRICS.
.. topic:: Examples:
* See :ref:`sphx_glr_auto_examples_covariance_plot_robust_vs_empirical_covariance.py` for
an example on how to fit a :class:`MinCovDet` object to data and see how
the estimate remains accurate despite the presence of outliers.
* See :ref:`sphx_glr_auto_examples_covariance_plot_mahalanobis_distances.py` to
visualize the difference between :class:`EmpiricalCovariance` and
:class:`MinCovDet` covariance estimators in terms of Mahalanobis distance
(so we get a better estimate of the precision matrix too).
.. |robust_vs_emp| image:: ../auto_examples/covariance/images/sphx_glr_plot_robust_vs_empirical_covariance_001.png
:target: ../auto_examples/covariance/plot_robust_vs_empirical_covariance.html
:scale: 49%
.. |mahalanobis| image:: ../auto_examples/covariance/images/sphx_glr_plot_mahalanobis_distances_001.png
:target: ../auto_examples/covariance/plot_mahalanobis_distances.html
:scale: 49%
____
.. list-table::
:header-rows: 1
* - Influence of outliers on location and covariance estimates
- Separating inliers from outliers using a Mahalanobis distance
* - |robust_vs_emp|
- |mahalanobis|
|