Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links in dataframe_schemas.rst #708

Merged
merged 1 commit into from
Dec 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/dataframe_schemas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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>`_:
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.
Expand Down Expand Up @@ -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 <https://pandas.pydata.org/pandas-docs/stable/user_guide/10min.html#selection-by-position>`_
instead of the more common
`selection by label <https://pandas.pydata.org/pandas-docs/stable/user_guide/10min.html#selection-by-label>`_.
* Machine learning: Many ML libraries will cast a Dataframe to numpy arrays,
Expand Down