Skip to content

Commit

Permalink
DOC: Fixing broken references in the docs (pandas-dev#24497)
Browse files Browse the repository at this point in the history
  • Loading branch information
datapythonista authored and Pingviinituutti committed Feb 28, 2019
1 parent f56666e commit 633bfd2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/source/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ If you need integer based selection, you should use ``iloc``:
dfir.iloc[0:5]
.. _indexing.intervallindex:
.. _advanced.intervallindex:

IntervalIndex
~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion doc/source/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ to these in old code bases and online. Going forward, we recommend avoiding
``.values`` and using ``.array`` or ``.to_numpy()``. ``.values`` has the following
drawbacks:

1. When your Series contains an :ref:`extension type <extending.extension-type>`, it's
1. When your Series contains an :ref:`extension type <extending.extension-types>`, it's
unclear whether :attr:`Series.values` returns a NumPy array or the extension array.
:attr:`Series.array` will always return an ``ExtensionArray``, and will never
copy data. :meth:`Series.to_numpy` will always return a NumPy array,
Expand Down
3 changes: 2 additions & 1 deletion doc/source/ecosystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ which are utilized by Jupyter Notebook for displaying
(Note: HTML tables may or may not be
compatible with non-HTML Jupyter output formats.)

See :ref:`Options and Settings <options>` and :ref:`<options.available>`
See :ref:`Options and Settings <options>` and
:ref:`Available Options <options.available>`
for pandas ``display.`` settings.

`quantopian/qgrid <https://github.com/quantopian/qgrid>`__
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ def resample(self, rule, *args, **kwargs):
Given a grouper, the function resamples it according to a string
"string" -> "frequency".
See the :ref:`frequency aliases <timeseries.offset-aliases>`
See the :ref:`frequency aliases <timeseries.offset_aliases>`
documentation for more details.
Parameters
Expand Down

0 comments on commit 633bfd2

Please sign in to comment.