Releases: JuliaStats/Clustering.jl
Releases · JuliaStats/Clustering.jl
v0.15.7
Clustering v0.15.7
Merged pull requests:
- Providing intrinsic clustering quality indices (#257) (@jaksle)
- build(deps): bump actions/checkout from 3 to 4 (#268) (@dependabot[bot])
v0.15.6
v0.15.5
v0.15.4
v0.15.3
Clustering v0.15.3
Closed issues:
- Unexpected behaviour of cutree - bug with :optimallayout? (#252)
Merged pull requests:
- Stop using unexported Base.permute!! (#229) (@LilithHafner)
- Fix cutree() for trees with unsorted merges (#254) (@alyst)
v0.15.2
v0.15.1
v0.15.0
Clustering v0.15.0
This minor release consolidates the two implementations of DBSCAN fixing some
bugs and introducing breaking changes that require updates to the user code:
res = dbscan(point, radius; kwargs...)
now returnsDbscanResult
instead ofVector{DbscanCluster}
.
To get the vector of clusters useres.clusters
.dbscan(dists, radius, N)
is deprecated. Usedbscan(dists, radius, min_neighbors=N, metric=nothing)
instead.
Closed issues:
- DBSCAN DenseMatrix Requirement (#153)
- DBscan Adjacency Lists have repeated clusters (#200)
- Docu for DBscan (#201)
- Readthedocs github link broken (#202)
- DBSCAN docs - consistency between 2 APIs (#221)
Merged pull requests:
v0.14.4
v0.14.3
What's Changed
- Remove nonexistent export of kmeans_opts by @nalimilan in #210
- CI: Switch to GitHub Actions and Codecov by @alyst in #211
- tests: increase vmeasure test iterations to 200 by @alyst in #212
- Fix typo by @Alex-vZyl in #232
- Add
rng
parameter to appropriate methods by @wildart in #228 - Remove test for a method from StatsBase by @ararslan in #233
New Contributors
- @Alex-vZyl made their first contribution in #232
Full Changelog: v0.14.2...v0.14.3