From 423e0ccfe59ede967016f6a7aff269d7ce697bd0 Mon Sep 17 00:00:00 2001 From: Nickolay Ponomarev Date: Thu, 16 Dec 2021 04:22:29 +0300 Subject: [PATCH] Fix broken links in dataframe_schemas.rst The `<(https://...)>` syntax used currently is not a thing in restructuredText... --- docs/source/dataframe_schemas.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/dataframe_schemas.rst b/docs/source/dataframe_schemas.rst index 61462a2e9..d0cb46045 100644 --- a/docs/source/dataframe_schemas.rst +++ b/docs/source/dataframe_schemas.rst @@ -59,8 +59,8 @@ Similarly to pandas, the data type can be specified as: * a string alias, as long as it is recognized by pandas. * a python type: `int`, `float`, `double`, `bool`, `str` -* a `numpy data type <(https://numpy.org/doc/stable/user/basics.types.html)>`_ -* a `pandas extension type <(https://pandas.pydata.org/pandas-docs/stable/user_guide/basics.html#dtypes)>`_: +* a `numpy data type `_ +* a `pandas extension type `_: it can be an instance (e.g `pd.CategoricalDtype(["a", "b"])`) or a class (e.g `pandas.CategoricalDtype`) if it can be initialized with default values. @@ -444,7 +444,7 @@ Validating the order of the columns For some applications the order of the columns is important. For example: * If you want to use - `selection by position <(https://pandas.pydata.org/pandas-docs/stable/user_guide/10min.html#selection-by-position)>`_ + `selection by position `_ instead of the more common `selection by label `_. * Machine learning: Many ML libraries will cast a Dataframe to numpy arrays,