Skip to content

Commit 77aad07

Browse files
DOC: see also pointing to ApplyToCols/Frame (#1750)
1 parent 48134a7 commit 77aad07

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

skrub/_table_vectorizer.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,14 @@ class Cleaner(TransformerMixin, BaseEstimator):
209209
types and representation of missing values. More informative columns (e.g.,
210210
categorical or datetime) are not converted.
211211
212+
ApplyToCols :
213+
Apply a given transformer separately to each column in a selection of columns.
214+
Useful to complement the default heuristics of the ``Cleaner``.
215+
216+
ApplyToFrame :
217+
Apply a given transformer jointly to all columns in a selection of columns.
218+
Useful to complement the default heuristics of the ``Cleaner``.
219+
212220
Notes
213221
-----
214222
The ``Cleaner`` performs the following set of transformations on each column:
@@ -529,6 +537,14 @@ class TableVectorizer(TransformerMixin, BaseEstimator):
529537
Preprocesses each column of a dataframe with consistency checks and
530538
sanitization, e.g., of null values or dates.
531539
540+
ApplyToCols :
541+
Apply a given transformer separately to each column in a selection of columns.
542+
Useful to complement the default heuristics of the ``TableVectorizer``.
543+
544+
ApplyToFrame :
545+
Apply a given transformer jointly to all columns in a selection of columns.
546+
Useful to complement the default heuristics of the ``TableVectorizer``.
547+
532548
Notes
533549
-----
534550
The TableVectorizer applies a different transformation to each of several kinds of columns:

0 commit comments

Comments
 (0)