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
+24-17
Original file line number
Diff line number
Diff line change
@@ -96,49 +96,56 @@ Bug Fixes
96
96
- Bug in json serialization when frame has length zero.(:issue:`9805`)
97
97
- Bug in `read_csv` where missing trailing delimiters would cause segfault. (:issue:`5664`)
98
98
- Bug in retaining index name on appending (:issue:`9862`)
99
-
100
-
101
99
- Bug in ``scatter_matrix`` draws unexpected axis ticklabels (:issue:`5662`)
102
-
103
100
- Fixed bug in ``StataWriter`` resulting in changes to input ``DataFrame`` upon save (:issue:`9795`).
104
-
105
-
106
101
- Bug in ``transform`` causing length mismatch when null entries were present and a fast aggregator was being used (:issue:`9697`)
107
-
108
102
- Bug in ``equals`` causing false negatives when block order differed (:issue:`9330`)
109
-
110
103
- Bug in ``read_sql_table`` error when reading postgres table with timezone (:issue:`7139`)
111
-
112
104
- Bug in ``DataFrame`` slicing may not retain metadata (:issue:`9776`)
113
105
- Bug where ``TimdeltaIndex`` were not properly serialized in fixed ``HDFStore`` (:issue:`9635`)
114
-
115
106
- Bug in plotting continuously using ``secondary_y`` may not show legend properly. (:issue:`9610`, :issue:`9779`)
116
-
117
107
- Bug in ``DataFrame.plot(kind="hist")`` results in ``TypeError`` when ``DataFrame`` contains non-numeric columns (:issue:`9853`)
118
108
- Bug where repeated plotting of ``DataFrame`` with a ``DatetimeIndex`` may raise ``TypeError`` (:issue:`9852`)
119
-
120
109
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`9675`)
121
110
- Bug in ``where`` causing incorrect results when upcasting was required (:issue:`9731`)
122
111
- 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`)
123
-
124
112
- 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`)
125
113
- Bug in ``read_csv`` and ``read_table`` when using ``skip_rows`` parameter if blank lines are present. (:issue:`9832`)
126
-
127
114
- Bug in ``read_csv()`` interprets ``index_col=True`` as ``1`` (:issue:`9798`)
128
115
- Bug in index equality comparisons using ``==`` failing on Index/MultiIndex type incompatibility (:issue:`9875`)
129
116
- Bug in which ``SparseDataFrame`` could not take `nan` as a column name (:issue:`8822`)
130
-
131
117
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`9675`)
132
-
133
118
- Bug in ``to_msgpack`` and ``read_msgpack`` zlib and blosc compression support (:issue:`9783`)
134
-
135
119
- 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`)
136
120
137
121
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
138
135
- 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`)
139
136
140
137
- Bug in ``MultiIndex.sortlevel()`` results in unicode level name breaks (:issue:`9875`)
141
-
142
138
- Bug in which ``groupby.transform`` incorrectly enforced output dtypes to match input dtypes. (:issue:`9807`)
143
139
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
144
150
- Bug where dividing a dataframe containing values of type ``Decimal`` by another ``Decimal`` would raise. (:issue:`9787`)
151
+
- Bug where using DataFrames asfreq would remove the name of the index. (:issue:`9885`)
0 commit comments