Recent Releases of clusteval
clusteval - v2.1.3
- Parameter
savefigcan now be used to store figures inplot,scatteranddendrogram
Example: ``` from clusteval import clusteval X, y = makeblobs(nsamples=600, centers=[[1, 1], [-1, -1], [1, -1]], clusterstd=0.4, randomstate=0) ce = clusteval(cluster='agglomerative', evaluate='derivative') results = ce.fit(X)
ce.plot(savefig={'fname':'clustevalplot.png'}) ce.scatter(X, dotsize=100, savefig={'fname':'clustevalscatter.png'}) ce.dendrogram(savefig={'fname':'clustevaldendrogram.png'})
```
- Jupyter Notebook
Published by erdogant about 4 years ago
clusteval - 2.0.0
Huge structural update. The input parameter "method" can only be used for the evaluation of methods, such as silhouette, dbindex and derivative. The clustering approach can separately be chosen using the input parameter "cluster", which can be: agglomerative, kmeans, dbscan, hdbscan.
- added input parameter: "cluster"
- input parameter "method" is for: silhouette, dbindex, derivative
- Changed input parameter minclusters to min_clust
- Changed input parameter maxclusters to max_clust
- Pep8 styling
- code refactoring
- Docstrings updated
- Jupyter Notebook
Published by erdogant over 5 years ago