Skip to content

Commit 39c74cd

Browse files
qinhanmin2014jnothman
authored andcommitted
DOC Remove experimental tag from ColumnTransformer (scikit-learn#13835)
1 parent 134c543 commit 39c74cd

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

doc/whats_new/v0.21.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,12 @@ Support for Python 3.4 and below has been officially dropped.
121121
parameter which can be used to find the clusters instead of ``n_clusters``.
122122
:issue:`9069` by :user:`Vathsala Achar <VathsalaAchar>` and `Adrin Jalali`_.
123123

124+
:mod:`sklearn.compose`
125+
......................
126+
127+
- |API| :class:`compose.ColumnTransformer` is no longer an experimental
128+
feature. :pr:`13835` by :user:`Hanmin Qin <qinhanmin2014>`.
129+
124130
:mod:`sklearn.datasets`
125131
.......................
126132

sklearn/compose/_column_transformer.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
class ColumnTransformer(_BaseComposition, TransformerMixin):
3434
"""Applies transformers to columns of an array or pandas DataFrame.
3535
36-
EXPERIMENTAL: some behaviors may change between releases without
37-
deprecation.
38-
3936
This estimator allows different columns or column subsets of the input
4037
to be transformed separately and the features generated by each transformer
4138
will be concatenated to form a single feature space.

sklearn/datasets/openml.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -449,9 +449,8 @@ def fetch_openml(name=None, version='active', data_id=None, data_home=None,
449449
450450
.. note:: EXPERIMENTAL
451451
452-
The API is experimental in version 0.20 (particularly the return value
453-
structure), and might have small backward-incompatible changes in
454-
future releases.
452+
The API is experimental (particularly the return value structure),
453+
and might have small backward-incompatible changes in future releases.
455454
456455
Parameters
457456
----------
@@ -515,10 +514,9 @@ def fetch_openml(name=None, version='active', data_id=None, data_home=None,
515514
516515
.. note:: EXPERIMENTAL
517516
518-
This interface is **experimental** as at version 0.20 and
519-
subsequent releases may change attributes without notice
520-
(although there should only be minor changes to ``data``
521-
and ``target``).
517+
This interface is **experimental** and subsequent releases may
518+
change attributes without notice (although there should only be
519+
minor changes to ``data`` and ``target``).
522520
523521
Missing values in the 'data' are represented as NaN's. Missing values
524522
in 'target' are represented as NaN's (numerical target) or None

0 commit comments

Comments
 (0)