diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst index 25ca77627ef39..06eb05a14bb38 100644 --- a/doc/source/ecosystem.rst +++ b/doc/source/ecosystem.rst @@ -230,7 +230,7 @@ allows users to view, manipulate and edit pandas ``Index``, ``Series``, and ``DataFrame`` objects like a "spreadsheet", including copying and modifying values, sorting, displaying a "heatmap", converting data types and more. pandas objects can also be renamed, duplicated, new columns added, -copyed/pasted to/from the clipboard (as TSV), and saved/loaded to/from a file. +copyied/pasted to/from the clipboard (as TSV), and saved/loaded to/from a file. Spyder can also import data from a variety of plain text and binary files or the clipboard into a new pandas DataFrame via a sophisticated import wizard. diff --git a/doc/source/user_guide/indexing.rst b/doc/source/user_guide/indexing.rst index 2bc7e13e39ec4..f2d609dfc9cac 100644 --- a/doc/source/user_guide/indexing.rst +++ b/doc/source/user_guide/indexing.rst @@ -584,7 +584,7 @@ IX indexer is deprecated The ``.ix`` indexer was removed, in favor of the more strict ``.iloc`` and ``.loc`` indexers. -``.ix`` offers a lot of magic on the inference of what the user wants to do. To wit, ``.ix`` can decide +``.ix`` offers a lot of magic on the inference of what the user wants to do. To with, ``.ix`` can decide to index *positionally* OR via *labels* depending on the data type of the index. This has caused quite a bit of user confusion over the years. diff --git a/doc/source/whatsnew/v0.16.2.rst b/doc/source/whatsnew/v0.16.2.rst index bb2aa166419b4..194bb61f2c1c8 100644 --- a/doc/source/whatsnew/v0.16.2.rst +++ b/doc/source/whatsnew/v0.16.2.rst @@ -147,7 +147,7 @@ Bug fixes - Bug in ``setitem`` where type promotion is applied to the entire block (:issue:`10280`) - Bug in ``Series`` arithmetic methods may incorrectly hold names (:issue:`10068`) - Bug in ``GroupBy.get_group`` when grouping on multiple keys, one of which is categorical. (:issue:`10132`) -- Bug in ``DatetimeIndex`` and ``TimedeltaIndex`` names are lost after timedelta arithmetics ( :issue:`9926`) +- Bug in ``DatetimeIndex`` and ``TimedeltaIndex`` names are lost after timedelta arithmetic ( :issue:`9926`) - Bug in ``DataFrame`` construction from nested ``dict`` with ``datetime64`` (:issue:`10160`) - Bug in ``Series`` construction from ``dict`` with ``datetime64`` keys (:issue:`9456`) - Bug in ``Series.plot(label="LABEL")`` not correctly setting the label (:issue:`10119`) diff --git a/doc/source/whatsnew/v0.20.0.rst b/doc/source/whatsnew/v0.20.0.rst index a9e57f0039735..b3f84491ee613 100644 --- a/doc/source/whatsnew/v0.20.0.rst +++ b/doc/source/whatsnew/v0.20.0.rst @@ -1308,7 +1308,7 @@ Deprecations Deprecate ``.ix`` ^^^^^^^^^^^^^^^^^ -The ``.ix`` indexer is deprecated, in favor of the more strict ``.iloc`` and ``.loc`` indexers. ``.ix`` offers a lot of magic on the inference of what the user wants to do. To wit, ``.ix`` can decide to index *positionally* OR via *labels*, depending on the data type of the index. This has caused quite a bit of user confusion over the years. The full indexing documentation is :ref:`here `. (:issue:`14218`) +The ``.ix`` indexer is deprecated, in favor of the more strict ``.iloc`` and ``.loc`` indexers. ``.ix`` offers a lot of magic on the inference of what the user wants to do. To with, ``.ix`` can decide to index *positionally* OR via *labels*, depending on the data type of the index. This has caused quite a bit of user confusion over the years. The full indexing documentation is :ref:`here `. (:issue:`14218`) The recommended methods of indexing are: diff --git a/doc/source/whatsnew/v0.24.1.rst b/doc/source/whatsnew/v0.24.1.rst index 1918a1e8caf6c..99d642c379921 100644 --- a/doc/source/whatsnew/v0.24.1.rst +++ b/doc/source/whatsnew/v0.24.1.rst @@ -1,6 +1,6 @@ .. _whatsnew_0241: -Whats new in 0.24.1 (February 3, 2019) +What's new in 0.24.1 (February 3, 2019) -------------------------------------- .. warning:: diff --git a/doc/source/whatsnew/v0.24.2.rst b/doc/source/whatsnew/v0.24.2.rst index 27e84bf0a7cd7..f8f919664ed25 100644 --- a/doc/source/whatsnew/v0.24.2.rst +++ b/doc/source/whatsnew/v0.24.2.rst @@ -1,6 +1,6 @@ .. _whatsnew_0242: -Whats new in 0.24.2 (March 12, 2019) +What's new in 0.24.2 (March 12, 2019) ------------------------------------ .. warning:: diff --git a/doc/source/whatsnew/v1.2.0.rst b/doc/source/whatsnew/v1.2.0.rst index 874caee23dae6..fd6e7c8e9cc02 100644 --- a/doc/source/whatsnew/v1.2.0.rst +++ b/doc/source/whatsnew/v1.2.0.rst @@ -180,7 +180,7 @@ Alternatively, you can also use the dtype object: .. warning:: Experimental: the new floating data types are currently experimental, and its - behaviour or API may still change without warning. Expecially the behaviour + behaviour or API may still change without warning. Especially the behaviour regarding NaN (distinct from NA missing values) is subject to change. .. _whatsnew_120.index_name_preservation: