Skip to content

Commit 7801687

Browse files
committed
fixing broken crossreferences
1 parent bb3632f commit 7801687

9 files changed

Lines changed: 14 additions & 12 deletions

File tree

doc/modules/data_ops/basics/control_flow.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ Finally, there are other situations where using :func:`deferred` can be helpful:
168168

169169
.. rubric:: Examples
170170

171-
- See :ref:`sphx_glr_auto_examples_data_ops_1110_data_ops_intro.py` for an introductory
171+
- See :ref:`sphx_glr_auto_tutorials_1110_data_ops_intro.py` for an introductory
172172
example on how to use skrub DataOps on a single dataframe.
173-
- See :ref:`sphx_glr_auto_examples_data_ops_1120_multiple_tables.py` for an example
173+
- See :ref:`sphx_glr_auto_examples_02_data_ops_1120_multiple_tables.py` for an example
174174
of how skrub DataOps can be used to process multiple tables using dataframe APIs.
175-
- See :ref:`sphx_glr_auto_examples_data_ops_1130_choices.py` for an example of
175+
- See :ref:`sphx_glr_auto_examples_02_data_ops_1130_choices.py` for an example of
176176
hyper-parameter tuning using skrub DataOps.

doc/modules/data_ops/ml_pipeline/applying_different_transformers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ to obtain the final result:
150150

151151
More info on advanced column selection and manipulation be found in
152152
:ref:`user_guide_selectors` and example
153-
:ref:`sphx_glr_auto_examples_0090_apply_to_cols.py`.
153+
:ref:`sphx_glr_auto_examples_0010_apply_to_cols.py`.

doc/modules/data_ops/ml_pipeline/subsampling_data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ set to ``True`` to force using the subsampling when we call them. Note that
2626
even if we set ``keep_subsampling=True``, subsampling is not applied when using
2727
``predict``.
2828

29-
See more details in a :ref:`full example <sphx_glr_auto_examples_data_ops_1140_subsampling.py>`.
29+
See more details in a :ref:`full example <sphx_glr_auto_examples_02_data_ops_1140_subsampling.py>`.

doc/modules/data_ops/validation/exporting_data_ops.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ or in a different environment:
6262
>>> loaded_learner.fit({"orders": new_orders_df})
6363
SkrubLearner(data_op=<Apply TableVectorizer>)
6464

65-
See :ref:`sphx_glr_auto_examples_data_ops_1150_use_case.py` for an example of how
65+
See :ref:`sphx_glr_auto_examples_02_data_ops_1150_use_case.py` for an example of how
6666
to use the learner in a microservice.

doc/modules/data_ops/validation/hyperparameter_tuning.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ search respectively), or with the ``choose`` parameter of
162162
:meth:`.skb.make_learner() <DataOp.skb.make_learner>`.
163163

164164
A full example of how to use hyperparameter search is available in
165-
:ref:`sphx_glr_auto_examples_data_ops_1130_choices.py`, and a full example using
165+
:ref:`sphx_glr_auto_examples_02_data_ops_1130_choices.py`, and a full example using
166166
Optuna is in :ref:`example_optuna_choices`.
167167

168168
|

doc/modules/joining_tables/assembling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ in the right table (the table to be added). This is done by estimating the value
7171
that the missing rows would have by training a machine learning model on the data
7272
we have access to.
7373

74-
This transformer is explored in more detail in :ref:`this example <sphx_glr_auto_examples_0080_interpolation_join.py>`.
74+
This transformer is explored in more detail in :ref:`this example <sphx_glr_auto_examples_03_joining_0080_interpolation_join.py>`.

doc/tutorials/0000_getting_started.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@
112112
# To handle rich tabular data and feed it to a machine learning model, the
113113
# pipeline returned by |tabular_pipeline| preprocesses and encodes
114114
# strings, categories and dates using the |TableVectorizer|.
115-
# See its documentation or :ref:`sphx_glr_auto_examples_0010_encodings.py` for
115+
# See its documentation or
116+
# :ref:`sphx_glr_auto_examples_01_encoding_0010_encodings.py` for
116117
# more details. An overview of the chosen defaults is available in
117118
# :ref:`user_guide_tabular_pipeline`.
118119

@@ -190,7 +191,8 @@
190191
# which uses pre-trained language models retrieved from the HuggingFace hub to
191192
# create meaningful text embeddings.
192193
# See :ref:`user_guide_encoders_index` for more details on all the categorical encoders
193-
# provided by skrub, and :ref:`sphx_glr_auto_examples_0010_encodings.py` for a
194+
# provided by skrub, and
195+
# :ref:`sphx_glr_auto_examples_01_encoding_0010_encodings.py` for a
194196
# comparison between the different methods.
195197
#
196198

examples/03_joining/0070_join_aggregation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
#
163163
# We bring this logic into a |TableVectorizer| to vectorize these columns in a
164164
# single step.
165-
# See `this example <https://skrub-data.org/stable/auto_examples/01_encodings.html#specializing-the-tablevectorizer-for-histgradientboosting>`_
165+
# See :ref:`this example <sphx_glr_auto_examples_01_encoding_0010_encodings.py>`
166166
# for more details about these encoding choices.
167167
from sklearn.preprocessing import OrdinalEncoder
168168

skrub/_table_vectorizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ class TableVectorizer(TransformerMixin, SkrubBaseEstimator):
593593
``specific_transformers``.
594594
Consider wrapping the ``TableVectorizer`` in :class:`~skrub.ApplyToCols`
595595
to select or exclude specific columns from the processing. Alternatively,
596-
the :ref:`skrub Data Ops <user_guide_data_ops>` allow for more complex
596+
the :ref:`skrub Data Ops <user_guide_data_ops_index>` allow for more complex
597597
pre-processing.
598598
599599
drop_null_fraction : float or None, default=1.0

0 commit comments

Comments
 (0)