class sklearn.base.BiclusterMixin
[source]
Mixin class for all bicluster estimators in scikit-learn
Attributes: |
|
---|
get_indices (i) | Row and column indices of the i’th bicluster. |
get_shape (i) | Shape of the i’th bicluster. |
get_submatrix (i, data) | Returns the submatrix corresponding to bicluster i . |
__init__($self, /, *args, **kwargs)
Initialize self. See help(type(self)) for accurate signature.
biclusters_
Convenient way to get row and column indicators together.
Returns the rows_
and columns_
members.
get_indices(i)
[source]
Row and column indices of the i’th bicluster.
Only works if rows_
and columns_
attributes exist.
Parameters: |
|
---|---|
Returns: |
|
get_shape(i)
[source]
Shape of the i’th bicluster.
Parameters: |
|
---|---|
Returns: |
|
get_submatrix(i, data)
[source]
Returns the submatrix corresponding to bicluster i
.
Parameters: |
|
---|---|
Returns: |
|
Works with sparse matrices. Only works if rows_
and columns_
attributes exist.
© 2007–2018 The scikit-learn developers
Licensed under the 3-clause BSD License.
http://scikit-learn.org/stable/modules/generated/sklearn.base.BiclusterMixin.html