You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/ecosystem.rst
+18-11
Original file line number
Diff line number
Diff line change
@@ -230,7 +230,7 @@ allows users to view, manipulate and edit pandas ``Index``, ``Series``,
230
230
and ``DataFrame`` objects like a "spreadsheet", including copying and modifying
231
231
values, sorting, displaying a "heatmap", converting data types and more.
232
232
pandas objects can also be renamed, duplicated, new columns added,
233
-
copyed/pasted to/from the clipboard (as TSV), and saved/loaded to/from a file.
233
+
copied/pasted to/from the clipboard (as TSV), and saved/loaded to/from a file.
234
234
Spyder can also import data from a variety of plain text and binary files
235
235
or the clipboard into a new pandas DataFrame via a sophisticated import wizard.
236
236
@@ -376,6 +376,23 @@ Dask-ML enables parallel and distributed machine learning using Dask alongside e
376
376
377
377
Koalas provides a familiar pandas DataFrame interface on top of Apache Spark. It enables users to leverage multi-cores on one machine or a cluster of machines to speed up or scale their DataFrame code.
pandas on Ray is an early stage DataFrame library that wraps pandas and transparently distributes the data and computation. The user does not need to know how many cores their system has, nor do they need to specify how to distribute the data. In fact, users can continue using their previous pandas notebooks while experiencing a considerable speedup from pandas on Ray, even on a single machine. Only a modification of the import statement is needed, as we demonstrate below. Once you’ve changed your import statement, you’re ready to use pandas on Ray just like you would pandas.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.1.4.rst
+2
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ Fixed regressions
20
20
- Fixed regression in :class:`RollingGroupby` with ``sort=False`` not being respected (:issue:`36889`)
21
21
- Fixed regression in :meth:`Series.astype` converting ``None`` to ``"nan"`` when casting to string (:issue:`36904`)
22
22
- Fixed regression in :class:`RollingGroupby` causing a segmentation fault with Index of dtype object (:issue:`36727`)
23
+
- Fixed regression in :meth:`DataFrame.resample(...).apply(...)` raised ``AttributeError`` when input was a :class:`DataFrame` and only a :class:`Series` was evaluated (:issue:`36951`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.2.0.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -180,7 +180,7 @@ Alternatively, you can also use the dtype object:
180
180
.. warning::
181
181
182
182
Experimental: the new floating data types are currently experimental, and its
183
-
behaviour or API may still change without warning. Expecially the behaviour
183
+
behaviour or API may still change without warning. Especially the behaviour
184
184
regarding NaN (distinct from NA missing values) is subject to change.
185
185
186
186
.. _whatsnew_120.index_name_preservation:
@@ -523,6 +523,7 @@ Other
523
523
524
524
- Bug in :meth:`DataFrame.replace` and :meth:`Series.replace` incorrectly raising ``AssertionError`` instead of ``ValueError`` when invalid parameter combinations are passed (:issue:`36045`)
525
525
- Bug in :meth:`DataFrame.replace` and :meth:`Series.replace` with numeric values and string ``to_replace`` (:issue:`34789`)
526
+
- Fixed bug in metadata propagation incorrectly copying DataFrame columns as metadata when the column name overlaps with the metadata name (:issue:`37037`)
526
527
- Fixed metadata propagation in the :class:`Series.dt` and :class:`Series.str` accessors (:issue:`28283`)
527
528
- Bug in :meth:`Index.union` behaving differently depending on whether operand is a :class:`Index` or other list-like (:issue:`36384`)
528
529
- Passing an array with 2 or more dimensions to the :class:`Series` constructor now raises the more specific ``ValueError``, from a bare ``Exception`` previously (:issue:`35744`)
0 commit comments