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
previous behavior (excludes 1st column from output):
62
62
63
-
In [3]: _ = gr.nth(0) # invokes the code path which excludes the 1st column
63
+
.. code-block:: python
64
64
65
-
In [4]: gr.apply(sum) # excludes 1st column from output
65
+
In [4]: gr.apply(sum)
66
66
Out[4]:
67
67
joe
68
68
jim
69
69
False 24
70
70
True 11
71
71
72
+
current behavior:
73
+
74
+
.. ipython:: python
75
+
76
+
gr.apply(sum)
77
+
72
78
.. _whatsnew_0151.enhancements:
73
79
74
80
Enhancements
@@ -80,7 +86,7 @@ Enhancements
80
86
81
87
82
88
- Added support for 3-character ISO and non-standard country codes in :func:``io.wb.download()`` (:issue:`8482`)
83
-
- :ref:`World Bank data requests <remote_data.wb>` now will warn/raise based on an ``errors`` argument, as well as a list of hard-coded country codes and the World Bank's JSON response. In prior versions, the error messages didn't look at the World Bank's JSON response. Problem-inducing input were simply dropped prior to the request. The issue was that many good countries were cropped in the hard-coded approach. All countries will work now, but some bad countries will raise exceptions because some edge cases break the entire response.
89
+
- :ref:`World Bank data requests <remote_data.wb>` now will warn/raise based on an ``errors`` argument, as well as a list of hard-coded country codes and the World Bank's JSON response. In prior versions, the error messages didn't look at the World Bank's JSON response. Problem-inducing input were simply dropped prior to the request. The issue was that many good countries were cropped in the hard-coded approach. All countries will work now, but some bad countries will raise exceptions because some edge cases break the entire response. (:issue:`8482`)
84
90
85
91
.. _whatsnew_0151.performance:
86
92
@@ -99,7 +105,7 @@ Bug Fixes
99
105
~~~~~~~~~
100
106
101
107
102
-
- Bug in coercing ``Categorical` to a records array, e.g. ``df.to_records()`` (:issue:`8626)
108
+
- Bug in coercing ``Categorical`` to a records array, e.g. ``df.to_records()`` (:issue:`8626`)
103
109
- Bug in ``Categorical`` not created properly with ``Series.to_frame()`` (:issue:`8626`)
104
110
- Bug in coercing in astype of a ``Categorical`` of a passed ``pd.Categorical`` (this now raises ``TypeError`` correctly), (:issue:`8626`)
105
111
- Bug in ``cut``/``qcut`` when using ``Series`` and ``retbins=True`` (:issue:`8589`)
@@ -141,5 +147,4 @@ Bug Fixes
141
147
142
148
143
149
144
-
- Fixed a bug where plotting a column ``y`` and specifying a label
145
-
would mutate the index name of the DataFrame ``y`` came from (:issue:`8494`)
150
+
- Fixed a bug where plotting a column ``y`` and specifying a label would mutate the index name of the original DataFrame (:issue:`8494`)
0 commit comments