Skip to content

Commit 633bfd2

Browse files
datapythonistaPingviinituutti
authored andcommitted
DOC: Fixing broken references in the docs (pandas-dev#24497)
1 parent f56666e commit 633bfd2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

doc/source/advanced.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ If you need integer based selection, you should use ``iloc``:
921921
922922
dfir.iloc[0:5]
923923
924-
.. _indexing.intervallindex:
924+
.. _advanced.intervallindex:
925925

926926
IntervalIndex
927927
~~~~~~~~~~~~~

doc/source/basics.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ to these in old code bases and online. Going forward, we recommend avoiding
156156
``.values`` and using ``.array`` or ``.to_numpy()``. ``.values`` has the following
157157
drawbacks:
158158

159-
1. When your Series contains an :ref:`extension type <extending.extension-type>`, it's
159+
1. When your Series contains an :ref:`extension type <extending.extension-types>`, it's
160160
unclear whether :attr:`Series.values` returns a NumPy array or the extension array.
161161
:attr:`Series.array` will always return an ``ExtensionArray``, and will never
162162
copy data. :meth:`Series.to_numpy` will always return a NumPy array,

doc/source/ecosystem.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ which are utilized by Jupyter Notebook for displaying
142142
(Note: HTML tables may or may not be
143143
compatible with non-HTML Jupyter output formats.)
144144

145-
See :ref:`Options and Settings <options>` and :ref:`<options.available>`
145+
See :ref:`Options and Settings <options>` and
146+
:ref:`Available Options <options.available>`
146147
for pandas ``display.`` settings.
147148

148149
`quantopian/qgrid <https://github.com/quantopian/qgrid>`__

pandas/core/groupby/groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ def resample(self, rule, *args, **kwargs):
13341334
Given a grouper, the function resamples it according to a string
13351335
"string" -> "frequency".
13361336
1337-
See the :ref:`frequency aliases <timeseries.offset-aliases>`
1337+
See the :ref:`frequency aliases <timeseries.offset_aliases>`
13381338
documentation for more details.
13391339
13401340
Parameters

0 commit comments

Comments
 (0)