diff --git a/sklearn/preprocessing/_function_transformer.py b/sklearn/preprocessing/_function_transformer.py index d975f63e32fe2..595ca0e0bbc1b 100644 --- a/sklearn/preprocessing/_function_transformer.py +++ b/sklearn/preprocessing/_function_transformer.py @@ -91,7 +91,7 @@ class FunctionTransformer(TransformerMixin, BaseEstimator): StandardScaler : Standardize features by removing the mean and scaling to unit variance. LabelBinarizer : Binarize labels in a one-vs-all fashion. - MultilabelBinarizer : Transform between iterable of iterables + MultiLabelBinarizer : Transform between iterable of iterables and a multilabel format. Examples