Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
hierarchical-clustering
Advanced tools
Agglomerative Hierarchical clustering based on How to Explain Hierarchical Clustering.
From clusterfck:
var cluster = require('hierarchical-clustering');
var colors = [
[20, 20, 80],
[22, 22, 90],
[250, 255, 253],
[100, 54, 255]
];
// Euclidean distance
function distance(a, b) {
var d = 0;
for (var i = 0; i < a.length; i++) {
d += Math.pow(a[i] - b[i], 2);
}
return Math.sqrt(d);
}
// Single-linkage clustering
function linkage(distances) {
return Math.min.apply(null, distances);
}
var levels = cluster({
input: colors,
distance: distance,
linkage: linkage,
minClusters: 2, // only want two clusters
});
var clusters = levels[levels.length - 1].clusters;
console.log(clusters);
// => [ [ 2 ], [ 3, 1, 0 ] ]
clusters = clusters.map(function (cluster) {
return cluster.map(function (index) {
return colors[index];
});
});
console.log(clusters);
// => [ [ [ 250, 255, 253 ] ],
// => [ [ 100, 54, 255 ], [ 22, 22, 90 ], [ 20, 20, 80 ] ] ]
var cluster = require('hierarchical-clustering')
Options:
.input <Array> (required)
- input array.distance <Function> (required)
- distance function.linkage <Function> (required)
- linkage function or string of 'single', 'complete or 'average'.minClusters <Integer> (1)
- number of clusters you want to iterate to.maxLinkage <Integer> (Infinity)
- maximum linkage until you stop iterationFunction definitions:
function distance(a, b) {
// the smaller, the closer
return <Number>
}
function linkage(distances) {
// the smaller, the more similar
return <Number>
}
The output is an array of level
s, each which have the property:
.linkage <Number>
- the linkage of this level.cluster <Array>
- the clusters at this level.from <Integer>
- index of the last cluster which got merged and deleted.to <Integer>
- index of the last cluster which got merged and appendedFAQs
Hierarchical clustering
The npm package hierarchical-clustering receives a total of 174 weekly downloads. As such, hierarchical-clustering popularity was classified as not popular.
We found that hierarchical-clustering demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.