diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index e681cb59f627fa..9981310b4a6fbd 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -921,7 +921,7 @@ If you need integer based selection, you should use ``iloc``: dfir.iloc[0:5] -.. _indexing.intervallindex: +.. _advanced.intervallindex: IntervalIndex ~~~~~~~~~~~~~ diff --git a/doc/source/basics.rst b/doc/source/basics.rst index a35c9a23fbaba4..8dca000dfa969a 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -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 `, it's +1. When your Series contains an :ref:`extension type `, 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, diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst index a5d1ec7b257d83..833308ec9fcc68 100644 --- a/doc/source/ecosystem.rst +++ b/doc/source/ecosystem.rst @@ -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 ` and :ref:`` +See :ref:`Options and Settings ` and +:ref:`Available Options ` for pandas ``display.`` settings. `quantopian/qgrid `__ diff --git a/pandas/core/groupby/groupby.py b/pandas/core/groupby/groupby.py index 6a8221ce4ccfe5..b8b73b6aab1a5d 100644 --- a/pandas/core/groupby/groupby.py +++ b/pandas/core/groupby/groupby.py @@ -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 ` + See the :ref:`frequency aliases ` documentation for more details. Parameters