@types/density-clustering
Advanced tools
Weekly downloads
Readme
npm install --save @types/density-clustering
This package contains type definitions for density-clustering (https://github.com/LukaszKrawczyk/density-clustering).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/density-clustering.
// Type definitions for density-clustering 1.3
// Project: https://github.com/LukaszKrawczyk/density-clustering
// Definitions by: Matt Fedderly <https://github.com/mfedderly>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export class DBSCAN {
run(
dataset: number[][],
neighborhoodRadius: number,
minPointsPerCluster: number,
distanceFunction?: (p: number[], q: number[]) => number,
): number[][];
noise: number[];
}
export class OPTICS {
run(dataset: number[][], neighborhoodRadius: number, minPointsPerCluster: number): number[][];
getReachabilityPlot(): number[][];
}
export class KMEANS {
run(dataset: number[][], numberOfClusters: number): number[][];
}
These definitions were written by Matt Fedderly.
FAQs
TypeScript definitions for density-clustering
The npm package @types/density-clustering receives a total of 556 weekly downloads. As such, @types/density-clustering popularity was classified as not popular.
We found that @types/density-clustering 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 installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.