Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliastats/clustering.jl
A Julia package for data clustering
https://github.com/juliastats/clustering.jl
clustering fuzzy-clustering hierarchical-clustering julia k-means markov-clustering
Last synced: 14 days ago
JSON representation
A Julia package for data clustering
- Host: GitHub
- URL: https://github.com/juliastats/clustering.jl
- Owner: JuliaStats
- License: other
- Created: 2012-11-24T15:47:36.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-05-06T14:22:07.000Z (6 months ago)
- Last Synced: 2024-10-29T20:33:19.874Z (14 days ago)
- Topics: clustering, fuzzy-clustering, hierarchical-clustering, julia, k-means, markov-clustering
- Language: Julia
- Homepage:
- Size: 6.28 MB
- Stars: 354
- Watchers: 21
- Forks: 118
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Clustering.jl
Methods for data clustering and evaluation of clustering quality.
[![Build Status](https://github.com/JuliaStats/Clustering.jl/workflows/CI/badge.svg)](https://github.com/JuliaStats/Clustering.jl/actions?query=workflow%3ACI+branch%3Amaster)
[![codecov](https://codecov.io/gh/JuliaStats/Clustering.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaStats/Clustering.jl)**Documentation**: [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url]
## Installation
```julia
Pkg.add("Clustering")
```## Features
### Clustering Algorithms
- K-means
- K-medoids
- Affinity Propagation
- Density-based spatial clustering of applications with noise (DBSCAN)
- Markov Clustering Algorithm (MCL)
- Fuzzy C-Means Clustering
- Hierarchical Clustering
- Single Linkage
- Average Linkage
- Complete Linkage
- Ward's Linkage### Clustering Validation
- Silhouettes
- Variation of Information
- Rand index
- V-Measure## See Also
Julia packages providing other clustering methods and performance evaluation:
- [QuickShiftClustering.jl](https://github.com/rened/QuickShiftClustering.jl)
- [SpectralClustering.jl](https://github.com/lucianolorenti/SpectralClustering.jl)
- [ClusteringBenchmarks.jl](https://github.com/HolyLab/ClusteringBenchmarks.jl)[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
[docs-dev-url]: http://JuliaStats.github.io/Clustering.jl/dev/[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg
[docs-latest-url]: http://JuliaStats.github.io/Clustering.jl/latest/[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-stable-url]: http://JuliaStats.github.io/Clustering.jl/stable/