Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
outliers2d
Advanced tools
Removes outliers in a 2D map or cartesian coordinate system.
It may use:
const { ellipseMad } = require('outliers2d')
const points = [
[0, 0], [0, 1], [0.5, 0.5], [1, 0], [1, 1], [5, 5]
]
const { filteredPoints, outliers, medianPoint } = ellipseMad(points)
console.log(filteredPoints) // [[0, 0], [0, 1], [0.5, 0.5], [1, 0], [1, 1]]
console.log(outliers) // [[ 5, 5 ]]
console.log(medianPoint) // [ 0.75, 0.75 ]
const { dbscan } = require('outliers2d')
const points = [
[0, 0], [0, 1], [0.5, 0.5], [1, 0], [1, 1], [5, 5], [5, 6], [51, 51]
]
const res = dbscan(points)
console.log(res.filteredPoints, res.outliers)
// [[0, 0], [0, 1], [0.5, 0.5], [1, 0], [1, 1]]
// [[5, 5], [5, 6], [51, 51]]
const res2 = dbscan(points, 2, 3, 2)
console.log(res2.filteredPoints, res2.outliers)
// [[0, 0], [0, 1], [0.5, 0.5], [1, 0], [1, 1], [5, 5], [5, 6]]
// [[51, 51]]
This library may apply the median absolute deviation (MAD) to plot an ellipse whose center is the median point of the coordinates and the semi-axes are the median deviations along the x and y coordinates. The ellipse is then linearly scaled by sigma. If a point is outside this ellipse, it is considered an outlier.
The median absolute deviation (MAD) is a measure of statistical dispersion. Moreover, the MAD is a robust statistic, being more resilient to outliers in a data set than the standard deviation. In the standard deviation, the distances from the mean are squared, so large deviations are weighted more heavily, and thus outliers can heavily influence it. In the MAD, the deviations of a small number of outliers are irrelevant. Because the MAD is a more robust estimator of scale than the sample variance or standard deviation, it works better with distributions without a mean or variance, such as the Cauchy distribution.
Density-based spatial clustering of applications with noise (DBSCAN) is a data clustering algorithm. For the purpose of outlier detection the present function considers that the main cluster is the cluster with the highest number of points, and then neglects outer isolated points with no clusters or minor clusters with not enough points.
FAQs
Remove outliers in maps or 2D cartesian coordinate systems
The npm package outliers2d receives a total of 1 weekly downloads. As such, outliers2d popularity was classified as not popular.
We found that outliers2d demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.