Skip to content

Releases: erdogant/clusteval

v2.2.1

25 Apr 20:15
Compare
Choose a tag to compare
  • Fix for scatter. Update in input parameters

v2.2.0

19 Apr 20:59
Compare
Choose a tag to compare
  • Fixes for tSNE perplexity and title
  • add normalization parameter
  • Various other improvements
  • Docstrings update

v2.1.6

16 Apr 21:46
Compare
Choose a tag to compare
  • many fixes and updates
  • wget is replaces by internal functions
  • plots are updated
  • added new plot: ce.plot_silhouette()
  • bugfix for min_samples fixed
  • jitter functionality added
  • logging improved
  • update docstrings

v2.1.5

22 Mar 21:10
Compare
Choose a tag to compare
  • fix in case silscore is empty

v2.1.4

02 Dec 15:15
Compare
Choose a tag to compare
  • sklearn changed into scikit-learn in both requirements and setup file.

v2.1.3

19 Mar 22:38
Compare
Choose a tag to compare
  • Parameter savefig can now be used to store figures in plot, scatter and dendrogram

Example:

from clusteval import clusteval
X, y = make_blobs(n_samples=600, centers=[[1, 1], [-1, -1], [1, -1]], cluster_std=0.4, random_state=0)
ce = clusteval(cluster='agglomerative', evaluate='derivative')
results = ce.fit(X)

ce.plot(savefig={'fname':'clusteval_plot.png'})
ce.scatter(X, dot_size=100, savefig={'fname':'clusteval_scatter.png'})
ce.dendrogram(savefig={'fname':'clusteval_dendrogram.png'})

2.1.2

30 Nov 18:33
Compare
Choose a tag to compare
  • added DOI

2.1.1

26 Nov 19:54
Compare
Choose a tag to compare
  • Input parameter "method" is changed into "evaluate"
  • Added docstrings
  • Some code refactoring and cleaning

2.1.0

26 Nov 12:20
Compare
Choose a tag to compare
  • improved default parameters for dbscan to detect clusters of various densities

2.0.5

09 Nov 21:04
Compare
Choose a tag to compare
  • bug fix in the special case when no clusters are possible to detect