@@ -32,9 +32,9 @@ pandas 0.11.0
32
32
- Allow mixed dtypes (e.g ``float32/float64/int32/int16/int8 ``) to coexist in
33
33
DataFrames and propogate in operations
34
34
- Add function to pandas.io.data for retrieving stock index components from
35
- Yahoo! finance (#2795 )
35
+ Yahoo! finance (GH2795 _ )
36
36
- Add ``squeeze `` function to reduce dimensionality of 1-len objects
37
- - Support slicing with time objects (#2681 )
37
+ - Support slicing with time objects (GH2681 _ )
38
38
39
39
**Improvements to existing features **
40
40
@@ -46,7 +46,7 @@ pandas 0.11.0
46
46
return a datetime64[ns] dtype with non-convertibles set as ``NaT ``; will
47
47
preserve an all-nan object (e.g. strings)
48
48
- Series print output now includes the dtype by default
49
- - Optimize internal reindexing routines for upcasting cases (#2819 )
49
+ - Optimize internal reindexing routines ( GH2819 _, GH2867 _ )
50
50
- ``describe_option() `` now reports the default and current value of options.
51
51
52
52
**API Changes **
@@ -62,7 +62,8 @@ pandas 0.11.0
62
62
(float32/float64); other types will be operated on, and will try to cast
63
63
back to the input dtype (e.g. if an int is passed, as long as the output
64
64
doesn't have nans, then an int will be returned)
65
- - backfill/pad/take/diff/ohlc will now support ``float32/int16/int8 `` operations
65
+ - backfill/pad/take/diff/ohlc will now support ``float32/int16/int8 ``
66
+ operations
66
67
- Integer block types will upcast as needed in where operations (GH2793 _)
67
68
- Series now automatically will try to set the correct dtype based on passed
68
69
datetimelike objects (datetime/Timestamp)
@@ -83,22 +84,31 @@ pandas 0.11.0
83
84
(e.g. np.array(datetime(2001,1,1,0,0))), w/o dtype being passed
84
85
- 0-dim ndarrays with a passed dtype are handled correctly
85
86
(e.g. np.array(0.,dtype='float32'))
86
- - Fix some boolean indexing inconsistencies in Series __getitem__/__setitem__
87
+ - Fix some boolean indexing inconsistencies in Series. __getitem__/__setitem__
87
88
(GH2776 _)
89
+ - Fix issues with DataFrame and Series constructor with integers that
90
+ overflow ``int64 `` and some mixed typed type lists (GH2845 _)
88
91
89
92
``HDFStore ``
90
93
91
94
- Fix weird PyTables error when using too many selectors in a where
92
- - Provide dotted attribute access to ``get `` from stores (e.g. store.df == store['df'])
93
- - Internally, change all variables to be private-like (now have leading underscore)
95
+ - Provide dotted attribute access to ``get `` from stores
96
+ (e.g. store.df == store['df'])
97
+ - Internally, change all variables to be private-like (now have leading
98
+ underscore)
94
99
95
100
.. _GH622 : https://github.com/pydata/pandas/issues/622
96
101
.. _GH797 : https://github.com/pydata/pandas/issues/797
97
- .. _GH2778 : https://github.com/pydata/pandas/issues/2778
98
- .. _GH2793 : https://github.com/pydata/pandas/issues/2793
99
- .. _GH2751 : https://github.com/pydata/pandas/issues/2751
102
+ .. _GH2681 : https://github.com/pydata/pandas/issues/2681
100
103
.. _GH2747 : https://github.com/pydata/pandas/issues/2747
104
+ .. _GH2751 : https://github.com/pydata/pandas/issues/2751
101
105
.. _GH2776 : https://github.com/pydata/pandas/issues/2776
106
+ .. _GH2778 : https://github.com/pydata/pandas/issues/2778
107
+ .. _GH2793 : https://github.com/pydata/pandas/issues/2793
108
+ .. _GH2795 : https://github.com/pydata/pandas/issues/2795
109
+ .. _GH2819 : https://github.com/pydata/pandas/issues/2819
110
+ .. _GH2845 : https://github.com/pydata/pandas/issues/2845
111
+ .. _GH2867 : https://github.com/pydata/pandas/issues/2867
102
112
103
113
pandas 0.10.1
104
114
=============
@@ -107,7 +117,7 @@ pandas 0.10.1
107
117
108
118
**New features **
109
119
110
- - Add data inferface to World Bank WDI pandas.io.wb (#2592 )
120
+ - Add data inferface to World Bank WDI pandas.io.wb (GH2592 _ )
111
121
112
122
**API Changes **
113
123
@@ -125,7 +135,8 @@ pandas 0.10.1
125
135
- ``HDFStore ``
126
136
127
137
- enables storing of multi-index dataframes (closes GH1277 _)
128
- - support data column indexing and selection, via ``data_columns `` keyword in append
138
+ - support data column indexing and selection, via ``data_columns `` keyword
139
+ in append
129
140
- support write chunking to reduce memory footprint, via ``chunksize ``
130
141
keyword to append
131
142
- support automagic indexing via ``index `` keyword to append
@@ -138,11 +149,14 @@ pandas 0.10.1
138
149
- added methods append_to_multiple/select_as_multiple/select_as_coordinates
139
150
to do multiple-table append/selection
140
151
- added support for datetime64 in columns
141
- - added method ``unique `` to select the unique values in an indexable or data column
152
+ - added method ``unique `` to select the unique values in an indexable or
153
+ data column
142
154
- added method ``copy `` to copy an existing store (and possibly upgrade)
143
- - show the shape of the data on disk for non-table stores when printing the store
144
- - added ability to read PyTables flavor tables (allows compatiblity to other HDF5 systems)
145
- - Add ``logx `` option to DataFrame/Series.plot (GH2327 _, #2565)
155
+ - show the shape of the data on disk for non-table stores when printing the
156
+ store
157
+ - added ability to read PyTables flavor tables (allows compatiblity to
158
+ other HDF5 systems)
159
+ - Add ``logx `` option to DataFrame/Series.plot (GH2327 _, GH2565 _)
146
160
- Support reading gzipped data from file-like object
147
161
- ``pivot_table `` aggfunc can be anything used in GroupBy.aggregate (GH2643 _)
148
162
- Implement DataFrame merges in case where set cardinalities might overflow
@@ -173,11 +187,12 @@ pandas 0.10.1
173
187
- Fix DatetimeIndex handling of FixedOffset tz (GH2604 _)
174
188
- More robust detection of being in IPython session for wide DataFrame
175
189
console formatting (GH2585 _)
176
- - Fix platform issues with ``file:/// `` in unit test (#2564 )
190
+ - Fix platform issues with ``file:/// `` in unit test (GH2564 _ )
177
191
- Fix bug and possible segfault when grouping by hierarchical level that
178
192
contains NA values (GH2616 _)
179
- - Ensure that MultiIndex tuples can be constructed with NAs (seen in #2616)
180
- - Fix int64 overflow issue when unstacking MultiIndex with many levels (#2616)
193
+ - Ensure that MultiIndex tuples can be constructed with NAs (GH2616 _)
194
+ - Fix int64 overflow issue when unstacking MultiIndex with many levels
195
+ (GH2616 _)
181
196
- Exclude non-numeric data from DataFrame.quantile by default (GH2625 _)
182
197
- Fix a Cython C int64 boxing issue causing read_csv to return incorrect
183
198
results (GH2599 _)
@@ -188,12 +203,14 @@ pandas 0.10.1
188
203
- Fix C parser-tokenizer bug with trailing fields. (GH2668 _)
189
204
- Don't exclude non-numeric data from GroupBy.max/min (GH2700 _)
190
205
- Don't lose time zone when calling DatetimeIndex.drop (GH2621 _)
191
- - Fix setitem on a Series with a boolean key and a non-scalar as value (GH2686 _)
206
+ - Fix setitem on a Series with a boolean key and a non-scalar as value
207
+ (GH2686 _)
192
208
- Box datetime64 values in Series.apply/map (GH2627 _, GH2689 _)
193
209
- Upconvert datetime + datetime64 values when concatenating frames (GH2624 _)
194
210
- Raise a more helpful error message in merge operations when one DataFrame
195
211
has duplicate columns (GH2649 _)
196
- - Fix partial date parsing issue occuring only when code is run at EOM (GH2618 _)
212
+ - Fix partial date parsing issue occuring only when code is run at EOM
213
+ (GH2618 _)
197
214
- Prevent MemoryError when using counting sort in sortlevel with
198
215
high-cardinality MultiIndex objects (GH2684 _)
199
216
- Fix Period resampling bug when all values fall into a single bin (GH2070 _)
@@ -204,6 +221,7 @@ pandas 0.10.1
204
221
.. _GH1277 : https://github.com/pydata/pandas/issues/1277
205
222
.. _GH2070 : https://github.com/pydata/pandas/issues/2070
206
223
.. _GH2327 : https://github.com/pydata/pandas/issues/2327
224
+ .. _GH2565 : https://github.com/pydata/pandas/issues/2565
207
225
.. _GH2585 : https://github.com/pydata/pandas/issues/2585
208
226
.. _GH2599 : https://github.com/pydata/pandas/issues/2599
209
227
.. _GH2604 : https://github.com/pydata/pandas/issues/2604
@@ -232,6 +250,9 @@ pandas 0.10.1
232
250
.. _GH2694 : https://github.com/pydata/pandas/issues/2694
233
251
.. _GH2686 : https://github.com/pydata/pandas/issues/2686
234
252
.. _GH2618 : https://github.com/pydata/pandas/issues/2618
253
+ .. _GH2592 : https://github.com/pydata/pandas/issues/2592
254
+ .. _GH2564 : https://github.com/pydata/pandas/issues/2564
255
+ .. _GH2616 : https://github.com/pydata/pandas/issues/2616
235
256
236
257
pandas 0.10.0
237
258
=============
@@ -708,7 +729,7 @@ pandas 0.9.1
708
729
.. _GH2117 : https://github.com/pydata/pandas/issues/2117
709
730
.. _GH2133 : https://github.com/pydata/pandas/issues/2133
710
731
.. _GH2114 : https://github.com/pydata/pandas/issues/2114
711
- .. _GH2527 : https://github.com/pydata/pandas/issues/2114
732
+ .. _GH2527 : https://github.com/pydata/pandas/issues/2527
712
733
.. _GH2128 : https://github.com/pydata/pandas/issues/2128
713
734
.. _GH2008 : https://github.com/pydata/pandas/issues/2008
714
735
.. _GH2179 : https://github.com/pydata/pandas/issues/2179
0 commit comments