Skip to content

Commit 993f88e

Browse files
committed
_
1 parent 8971109 commit 993f88e

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGES.rst

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ New Features
2222
- The :class:`DropSimilar` transformer has been added, for removing columns that
2323
present high correlation with other columns in a dataframe . :pr:`2023` by
2424
:user:`Eloi Massoulié <emassoulie>`.
25-
- :class:`ToFloat32` now allows users to specify ``decimal`` and ``thousand``
25+
- :class:`ToFloat` now allows users to specify ``decimal`` and ``thousand``
2626
separators to parse numerical columns that use formatting different from the default
2727
formatting used in Python, such as ``1'234,5``.
2828
Additionally, negative numbers indicated with parentheses can be converted to the
@@ -36,7 +36,8 @@ New Features
3636
- :meth:`TableReport.json` now includes histogram data for numeric and datetime
3737
columns (the bin count and edges, and numbers of low and high outliers). Now
3838
``json()`` contains all the information shown in the report HTML rendering,
39-
including the plots. The schema of the generated JSON is available at :ref:``.
39+
including the plots. The schema of the generated JSON is available at
40+
:ref:`table_report_json_schema`.
4041
:pr:`2164` by :user:`Jérôme Dockès <jeromedockes>`.
4142
- The :class:`TableReport` can now be exported in markdown format with
4243
:func:`~skrub.TableReport.markdown`.
@@ -51,8 +52,10 @@ New Features
5152
control respectively which scores, choices (params), and times (fit or score
5253
durations) should be included in the figure. :pr:`2202` by :user:`Jérôme
5354
Dockès <jeromedockes>`.
54-
- New methods :meth:`SkrubLearner.get_named_params` and
55-
:meth:`SkrubLearner.set_named_params` allow getting and setting the outcomes for
55+
- New :class:`SkrubLearner` methods
56+
:meth:`SkrubLearner.get_named_params` and
57+
:meth:`SkrubLearner.set_named_params` allow getting and
58+
setting the outcomes for
5659
choices contained in the DataOp, keyed by choice name. They provide a more
5760
robust way of transferring selected hyperparameters from one DataOp to a
5861
different one than :meth:`SkrubLearner.get_params` and
@@ -88,7 +91,8 @@ New Features
8891

8992
Changes
9093
-------
91-
- :meth:`SkrubLearner.score` has been enhanced when the DataOp used
94+
- :class:`SkrubLearner`'s :meth:`SkrubLearner.score`
95+
has been enhanced when the DataOp used
9296
:meth:`DataOp.skb.with_scoring`. During scoring, predict(), predict_proba()
9397
etc. are cached to avoid recomputation when multiple scorers are used (or one
9498
scorer calls them several times). Moreover it is possible to pass

doc/api_reference.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,12 @@
122122
"description": None,
123123
"autosummary": [
124124
"SquashingScaler",
125-
"deduplicate",
126125
"Cleaner",
127126
"DropUninformative",
127+
"DropSimilar",
128+
"DurationToFloat",
128129
"to_datetime",
130+
"deduplicate",
129131
],
130132
},
131133
],

0 commit comments

Comments
 (0)