Releases: JuliaStats/Clustering.jl
Releases · JuliaStats/Clustering.jl
v0.15.8
Clustering v0.15.8
Merged pull requests:
- Small corrections in docs validate.md (#271) (@jaksle)
- build(deps): bump codecov/codecov-action from 3 to 4 (#272) (@dependabot[bot])
- build(deps): bump julia-actions/setup-julia from 1 to 2 (#276) (@dependabot[bot])
- build(deps): bump julia-actions/cache from 1 to 2 (#277) (@dependabot[bot])
- Fix broadcasting bug in
repick_unused_centers()
for K-means (#283) (@AzamatB) - build(deps): bump codecov/codecov-action from 4 to 5 (#284) (@dependabot[bot])
- Modification to dbscan to add test cases and support for the case where num points <= num dimensions (#286) (@lwabeke)
Closed issues:
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: