Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ Changes
:pr:`2096` by :user:`Ayesha Siddiqua <siddiqua-tamk>`.
- The :class:`TableReport` can now be exported in markdown format with ``.markdown``.
:pr:`2048` by :user:`Riccardo Cappuzzo <rcap107>`.
- The minimum required version of matplotlib has been increased from 3.4.3 to 3.6.1.
:pr:`2159` by :user:`Riccardo Cappuzzo <rcap107>`.

Bugfixes
--------
Expand Down
2 changes: 1 addition & 1 deletion skrub/_agg_joiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class AggJoiner(TransformerMixin, BaseEstimator):
not be reflected in the transformed output. If you need to update the
auxiliary table, you will need to refit the transformer.

Consider using the :ref:`skrub Data Ops <_user_guide_data_ops_index>`
Consider using the :ref:`skrub Data Ops <user_guide_data_ops_index>`
and a standard dataframe library (Pandas or Polars) to perform the
aggregation instead.

Expand Down
5 changes: 2 additions & 3 deletions skrub/_joiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,11 @@ class Joiner(TransformerMixin, BaseEstimator):
Additionally, the auxiliary table is stored in memory as part of the state
of the transformer, which can lead to high memory usage if the auxiliary
table is large.
Moreover, it is frozen in memory after fitting, which means that if the
auxiliary table is modified after fitting, the changes will not be reflected
Moreover, the auxiliary table is frozen in memory after fitting, which means
that if it is modified after fitting, the changes will not be reflected
in the transformed output. If you need to update the auxiliary table, you
will need to refit the transformer.


Parameters
----------
aux_table : dataframe
Expand Down
5 changes: 3 additions & 2 deletions skrub/_multi_agg_joiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ class MultiAggJoiner(TransformerMixin, BaseEstimator):
.. warning::
The auxiliary table is stored in memory as part of the state of the transformer,
which can lead to high memory usage if the auxiliary table is large.
Consider using the skrub Data Ops and a standard dataframe library (Pandas
or Polars) to perform the aggregation instead.
Consider using the :ref:`skrub Data Ops <user_guide_data_ops_index>` and
a standard dataframe library (Pandas or Polars) to perform the aggregation
instead.

Parameters
----------
Expand Down