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/whatsnew/v0.16.1.txt
+41-14
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,8 @@ Enhancements
51
51
- ``get_dummies`` function now accepts ``sparse`` keyword. If set to ``True``, the return ``DataFrame`` is sparse, e.g. ``SparseDataFrame``. (:issue:`8823`)
52
52
- ``Period`` now accepts ``datetime64`` as value input. (:issue:`9054`)
53
53
54
+
- Allow timedelta string conversion when leading zero is missing from time definition, ie `0:00:00` vs `00:00:00`. (:issue:`9570`)
55
+
54
56
.. _whatsnew_0161.api:
55
57
56
58
API changes
@@ -94,34 +96,59 @@ Bug Fixes
94
96
- Fixed bug (:issue:`9542`) where labels did not appear properly in legend of ``DataFrame.plot()``. Passing ``label=`` args also now works, and series indices are no longer mutated.
95
97
- Bug in json serialization when frame has length zero.(:issue:`9805`)
96
98
- Bug in `read_csv` where missing trailing delimiters would cause segfault. (:issue:`5664`)
97
-
98
-
99
+
- Bug in retaining index name on appending (:issue:`9862`)
99
100
- Bug in ``scatter_matrix`` draws unexpected axis ticklabels (:issue:`5662`)
100
-
101
101
- Fixed bug in ``StataWriter`` resulting in changes to input ``DataFrame`` upon save (:issue:`9795`).
102
-
103
-
104
102
- Bug in ``transform`` causing length mismatch when null entries were present and a fast aggregator was being used (:issue:`9697`)
105
-
106
103
- Bug in ``equals`` causing false negatives when block order differed (:issue:`9330`)
107
-
104
+
- Bug in ``read_sql_table`` error when reading postgres table with timezone (:issue:`7139`)
108
105
- Bug in ``DataFrame`` slicing may not retain metadata (:issue:`9776`)
109
106
- Bug where ``TimdeltaIndex`` were not properly serialized in fixed ``HDFStore`` (:issue:`9635`)
110
-
111
107
- Bug in plotting continuously using ``secondary_y`` may not show legend properly. (:issue:`9610`, :issue:`9779`)
112
-
113
108
- Bug in ``DataFrame.plot(kind="hist")`` results in ``TypeError`` when ``DataFrame`` contains non-numeric columns (:issue:`9853`)
114
109
- Bug where repeated plotting of ``DataFrame`` with a ``DatetimeIndex`` may raise ``TypeError`` (:issue:`9852`)
115
-
116
110
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`9675`)
117
111
- Bug in ``where`` causing incorrect results when upcasting was required (:issue:`9731`)
118
112
- Bug in ``FloatArrayFormatter`` where decision boundary for displaying "small" floats in decimal format is off by one order of magnitude for a given display.precision (:issue:`9764`)
119
-
120
113
- Fixed bug where ``DataFrame.plot()`` raised an error when both ``color`` and ``style`` keywords were passed and there was no color symbol in the style strings (:issue:`9671`)
121
114
- Bug in ``read_csv`` and ``read_table`` when using ``skip_rows`` parameter if blank lines are present. (:issue:`9832`)
122
-
123
115
- Bug in ``read_csv()`` interprets ``index_col=True`` as ``1`` (:issue:`9798`)
124
-
116
+
- Bug in index equality comparisons using ``==`` failing on Index/MultiIndex type incompatibility (:issue:`9875`)
125
117
- Bug in which ``SparseDataFrame`` could not take `nan` as a column name (:issue:`8822`)
126
-
118
+
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`9675`)
119
+
- Bug in ``to_msgpack`` and ``read_msgpack`` zlib and blosc compression support (:issue:`9783`)
127
120
- Bug in unequal comparisons between a ``Series`` of dtype `"category"` and a scalar (e.g. ``Series(Categorical(list("abc"), categories=list("cba"), ordered=True)) > "b"``, which wouldn't use the order of the categories but use the lexicographical order. (:issue:`9848`)
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
- Bug in unequal comparisons between categorical data and a scalar, which was not in the categories (e.g. ``Series(Categorical(list("abc"), ordered=True)) > "d"``. This returned ``False`` for all elements, but now raises a ``TypeError``. Equality comparisons also now return ``False`` for ``==`` and ``True`` for ``!=``. (:issue:`9848`)
137
+
138
+
- Bug in DataFrame ``__setitem__`` when right hand side is a dictionary (:issue:`9874`)
139
+
140
+
- Bug in ``MultiIndex.sortlevel()`` results in unicode level name breaks (:issue:`9875`)
141
+
- Bug in which ``groupby.transform`` incorrectly enforced output dtypes to match input dtypes. (:issue:`9807`)
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
- Bug where dividing a dataframe containing values of type ``Decimal`` by another ``Decimal`` would raise. (:issue:`9787`)
154
+
- Bug where using DataFrames asfreq would remove the name of the index. (:issue:`9885`)
0 commit comments