@@ -86,7 +86,9 @@ pandas 0.8.0
86
86
- Add lag plot (#1440)
87
87
- Add autocorrelation_plot (#1425)
88
88
- Add support for tox and Travis CI (#1382)
89
- - Add support for ordered factors and use in GroupBy (#292)
89
+ - Add support for Categorical use in GroupBy (#292)
90
+ - Add ``any `` and ``all `` methods to DataFrame (#1416)
91
+ - Add ``secondary_y `` option to Series.plot
90
92
91
93
**Improvements to existing features **
92
94
@@ -124,9 +126,16 @@ pandas 0.8.0
124
126
- Add ``convert_dtype `` option to Series.apply to be able to leave data as
125
127
dtype=object (#1414)
126
128
- Can specify all index level names in concat (#1419)
129
+ - Add ``dialect `` keyword to parsers for quoting conventions (#1363)
130
+ - Enable DataFrame[bool_DataFrame] += value (#1366)
131
+ - Add ``retries `` argument to ``get_data_yahoo `` to try to prevent Yahoo! API
132
+ 404s (#826)
133
+ - Improve performance of reshaping by using O(N) categorical sorting
127
134
128
135
**API Changes **
129
136
137
+ - Rename Factor to Categorical and add improvements. Numerous Categorical bug
138
+ fixes
130
139
- Frequency name overhaul, WEEKDAY/EOM and rules with @
131
140
deprecated. get_legacy_offset_name backwards compatibility function added
132
141
- Raise ValueError in DataFrame.__nonzero__, so "if df" no longer works
@@ -190,6 +199,10 @@ pandas 0.8.0
190
199
- Fix outer/inner DataFrame.join with non-unique indexes (#1421)
191
200
- Fix MultiIndex groupby bugs with empty lower levels (#1401)
192
201
- Calling fillna with a Series will have same behavior as with dict (#1486)
202
+ - SparseSeries reduction bug (#1375)
203
+ - Fix unicode serialization issue in HDFStore (#1361)
204
+ - Pass keywords to pyplot.boxplot in DataFrame.boxplot (#1493)
205
+ - Bug fixes in MonthBegin (#1483)
193
206
194
207
pandas 0.7.3
195
208
============
0 commit comments