Fork me on GitHub

This documentation is for scikit-learn version 0.18.dev0Other versions

If you use the software, please consider citing scikit-learn.

sklearn.base.ClusterMixin

class sklearn.base.ClusterMixin[source]

Mixin class for all cluster estimators in scikit-learn.

Methods

fit_predict(X[, y]) Performs clustering on X and returns cluster labels.
__init__()

x.__init__(...) initializes x; see help(type(x)) for signature

fit_predict(X, y=None)[source]

Performs clustering on X and returns cluster labels.

Parameters:

X : ndarray, shape (n_samples, n_features)

Input data.

Returns:

y : ndarray, shape (n_samples,)

cluster labels

Previous