Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent-Maladiere committed Nov 4, 2023
1 parent d205778 commit 22f681d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skrub/_table_vectorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ class TableVectorizer(TransformerMixin, BaseEstimator):
>>> tv.transformers_
[('numeric', 'passthrough', ['year_first_hired']), \
('datetime', DatetimeEncoder(), ['date_first_hired']), \
('low_card_cat', OneHotEncoder(drop='if_binary', handle_unknown='infrequent_if_exist'), \
('low_card_cat', OneHotEncoder(drop='if_binary', handle_unknown='ignore', \
sparse_output=False), \
['gender', 'department', 'department_name', 'assignment_category']), \
('high_card_cat', GapEncoder(n_components=30), ['division', 'employee_position_title'])]
""" # noqa: E501
Expand Down

0 comments on commit 22f681d

Please sign in to comment.