Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@jbeuckm/k-means-js
Advanced tools
A basic Javascript implementation of the cluster analysis algorithm.
A basic Javascript implementation of the [cluster analysis] 1 algorithm.
The normalizer will scale numerical data between [0,1] and will generate n outputs of either zero or one for discrete data, eg. category.
// Tell the normalizer about the category field.
var params = {
category: "discrete"
};
// Category is a discrete field with two possible values.
// Value is a linear field with continuous possible values.
var data = [
{
category: "a",
value: 25
},
{
category: "b",
value: 7.6
},
{
category: "a",
value: 28
}
];
var ranges = require('dataset').findRanges(params, data);
var normalized = require('dataset').normalize(data, ranges);
// This non-normalized sample data with n=k is a pretty awful example.
var points = [
[.1, .2, .3],
[.4, .5, .6],
[.7, .8, .9]
];
var k = 3;
var means = require('kmeans').algorithm(points, k, console.log);
The call to algorithm() will find the data's range in each dimension, generate k=3 random points, and iterate until the means are static.
The method described by Pham, et al. is implemented. The algorithm evaluates K-means repeatedly for different values of K, and returns the best (guess) value for K as well as the set of means found during evaluation.
var pbk = require('phamBestK');
var maxKToTest = 10;
var result = pbk.findBestK(points, maxKToTest);
console.log("this data has "+result.K+" clusters");
console.log("cluster centroids = "+result.means);
Denormalization can be used to show the means discovered:
for (var i= 0, l=result.means.length; i<l; i++) {
console.log(dataset.denormalizeDatum(result.means[i], ranges));
}
FAQs
A basic Javascript implementation of the cluster analysis algorithm.
The npm package @jbeuckm/k-means-js receives a total of 2 weekly downloads. As such, @jbeuckm/k-means-js popularity was classified as not popular.
We found that @jbeuckm/k-means-js demonstrated a not healthy version release cadence and project activity because the last version was released 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.