sift:principal_component_analysis:outlier_detection_for_pca
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sift:principal_component_analysis:outlier_detection_for_pca [2024/07/17 15:41] – removed sgranger | sift:principal_component_analysis:outlier_detection_for_pca [2024/08/28 19:04] (current) – [Reference] wikisysop | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Outlier Detection for PCA ====== | ||
+ | |||
+ | Outlier Detection is encompassed in a variety of statistical methods which look to find data that is not representative of dataset to which it belongs. These outliers (or anomalies) may then be further analyzed, or simply discarded. There are a variety of different methods to do this, including supervised and unsupervised methods. Here we will describe some common detection methods, all of which have been implemented into Sift. Specifically, | ||
+ | |||
+ | ===== Unsupervised Methods ===== | ||
+ | |||
+ | ==== Local Outlier Factor ==== | ||
+ | |||
+ | Local Outlier Factor (LOF) is an unsupervised method of finding outliers through a data points local density, introduced in 2000 by Breunig et al. [[https:// | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The points o1 and o2 in the picture above both represent outliers. Some algorithms may not classify o2 as an outlier, as it has a similar density to the points in C1, but we see that based on the local tendencies of the data, it should be classified as an outlier. | ||
+ | |||
+ | The LOF is a statistic calculated for each point in the database, with values below 1 representing inliers (as they are in a denser neighbourhood than their k neighbours), | ||
+ | |||
+ | === Algorithm === | ||
+ | |||
+ | |||
+ | - Calculate the k-nearest neighbours: \\ Using a distance metric (such as Euclidean Distance), calculate the k nearest neighbours for all data points. | ||
+ | - Calculate reachability distance: \\ For each point, calculate the reachability distance between itself and its k neighbours, defined as the maximum of: | ||
+ | - The distance between the 2 points. | ||
+ | - The distance from the neighbouring point to **its own** k-th nearest neighbour (known as the k-distance of the neighbouring point) \\ //Note that the use of reachability distance helps to normalize or smooth the output, by reducing the effects of random fluctuations (i.e. random points that are extremely close together)// \\ The reachability distance from p1 to o, and p2 to o is shown below: \\ {{: | ||
+ | - Calculate local reachability density: \\ For each point, the local reachability density is 1 / (the average reachability distance to the k nearest neighbours), | ||
+ | - Calculate local outlier factor: \\ For each point, the local outlier factor is the average ratio between the points local reachability distance and each of the local reachability distance of the k nearest neighbours, i.e. \\ {{: | ||
+ | - Threshold to find outliers: \\ Identify a threshold for which to determine points are outliers. This threshold should be some point above 1 (as a LOF of > 1 represents lower density than its neighbours), | ||
+ | |||
+ | ==== Grubbs' | ||
+ | |||
+ | The Grubbs' | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The null hypothesis of no outliers is rejected (at significance level a) if (i.e. we identify the maximal value as an outlier): | ||
+ | |||
+ | {{: | ||
+ | |||
+ | If we successfully reject the null hypothesis, we remove the outlier from the data, and calculate the statistic again on the new data. We can continue this until no outliers are detected, or stop after X outliers have been identified (X being up to the user). | ||
+ | |||
+ | ==== Mahalanobis Distance Test ==== | ||
+ | |||
+ | The Mahalanobis distance is a distance measure between a point and a distribution, | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The outliers in the picture above have very different Euclidean Distance measures (9.22 and 2.83 respectively), | ||
+ | |||
+ | The Mahalanobis Distance is a statistic calculated for each point in the database, with larger distances indicating a higher likelihood that a point is an outlier (with a confidence threshold dependent on the # of dimensions being tested). For more information on the implementation and guidelines for using this method, see the [[Sift: | ||
+ | |||
+ | The Mahalanobis Distance can be thought of as Euclidean distance where the dimensions have been de-correlated and scaled to unit variance. In fact, the Mahalanobis distance is exactly equivalent to Euclidean Distance, after performing a Whitening transformation, | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Where X is the vector difference of the point from the distribution mean, and S^-1 is the inverse of the variance-covariance matrix of the distribution. | ||
+ | |||
+ | The square of the Mahalanobis Distance (d< | ||
+ | |||
+ | We produce this statistic for each data point being observed, and choose the null hypothesis to be that this point was drawn from the specified multi-variate normal distribution. We can reject this null hypothesis (at significance level alpha) if (i.e. the point is an outlier): | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Where X< | ||
+ | |||
+ | If we successfully reject the null hypothesis, we remove the outlier from the data, and calculate the statistic again or until we have calculated it on each data point. We can recalculate the new covariance, and continue this until no outliers are detected, or stop after X iterations have occurred (X being up to the user). | ||
+ | |||
+ | ==== Squared Prediction Error (SPE) ==== | ||
+ | |||
+ | SPE is a distance measure between the true measurement of a datapoint, and the predicted measurement of the datapoint. Unlike Mahalanobis Distance, this does not account for any of the variance in each dimension, but the total actual Euclidean distance. This is useful for finding data that is spatially far from a predicted value, even if it is well within a specified trend. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | The example above shows an extended version of the Mahalanobis Distance example from above (in 3 dimensions), | ||
+ | |||
+ | In the context of a PCA analysis, the SPE is a measurement of the PCA reconstruction error (i.e. how far off a PCA reconstruction from a lower dimensional space is from the ground truth). This is equivalent to the distance (squared) from the original data, to it's projection onto the PCA reduced k-dimension hyperplane, and is calculated as follows: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Where Q represents the SPE, r< | ||
+ | |||
+ | The SPE complements the Mahalanobis Distance, and is often used in conjunction with it to determine the outliers. | ||
+ | |||
+ | The SPE follows a non-central chi-square distribution, | ||
+ | |||
+ | We produce this statistic for each data point being observed, and choose the null hypothesis to be that this point was drawn from the specified non-central chi-square distribution. We can reject this null hypothesis (at significance level alpha) if Q is greater than Q< | ||
+ | |||
+ | {{: | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | If we successfully reject the null hypothesis, we remove the outlier from the data, and calculate the statistic again or until we have calculated it on each data point. We can recalculate the new covariance, and continue this until no outliers are detected, or stop after X iterations have occurred (X being up to the user). | ||
+ | |||
+ | ===== Reference ===== | ||
+ | |||
+ | Markus M. Breunig, Hans-Peter Kriegel, Raymond T. Ng, and Jörg Sander. 2000. LOF: identifying density-based local outliers. SIGMOD Rec. 29, 2 (June 2000), 93–104. https:// | ||
+ | |||
+ | **Abstract** | ||
+ | |||
+ | For many KDD applications, | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Slišković, | ||
+ | |||
+ | **Abstract** | ||
+ | |||
+ | Demands regarding production efficiency, product quality, safety levels and environment protection are continuously increasing in the process industry. The way to accomplish these demands is to introduce ever more complex automatic control systems which require more process variables to be measured and more advanced measurement systems. Quality and reliable measurements of process variables are the basis for the quality process control. Process equipment failures can significantly deteriorate production process and even cause production outage, resulting in high additional costs. This paper analyzes automatic fault detection and identification of process measurement equipment, i.e. sensors. Different statistical methods can be used for this purpose in a way that continuously acquired measurements are analyzed by these methods. In this paper, PCA and ICA methods are used for relationship modelling which exists between process variables while Hotelling' | ||
+ | |||
+ | |||
+ | |||
sift/principal_component_analysis/outlier_detection_for_pca.1721230919.txt.gz · Last modified: 2024/07/17 15:41 by sgranger