@@ -36,15 +36,19 @@ pandas 0.11.0
36
36
- Add function to pandas.io.data for retrieving stock index components from
37
37
Yahoo! finance (GH2795 _)
38
38
- Support slicing with time objects (GH2681 _)
39
- - Added ``.iloc `` attribute, to support strict integer based indexing, analagous to ``.ix `` (GH2922 _)
40
- - Added ``.loc `` attribute, to support strict label based indexing, analagous to ``.ix `` (GH3053 _)
41
- - Added ``.iat `` attribute, to support fast scalar access via integers (replaces ``iget_value/iset_value ``)
42
- - Added ``.at `` attribute, to support fast scalar access via labels (replaces ``get_value/set_value ``)
39
+ - Added ``.iloc `` attribute, to support strict integer based indexing,
40
+ analogous to ``.ix `` (GH2922 _)
41
+ - Added ``.loc `` attribute, to support strict label based indexing, analagous
42
+ to ``.ix `` (GH3053 _)
43
+ - Added ``.iat `` attribute, to support fast scalar access via integers
44
+ (replaces ``iget_value/iset_value ``)
45
+ - Added ``.at `` attribute, to support fast scalar access via labels (replaces
46
+ ``get_value/set_value ``)
43
47
- Moved functionaility from ``irow,icol,iget_value/iset_value `` to ``.iloc `` indexer
44
48
(via ``_ixs `` methods in each object)
45
49
- Added support for expression evaluation using the ``numexpr `` library
46
- - Added ``convert=boolean `` to ``take `` routines to translate negative indices to positive,
47
- defaults to True
50
+ - Added ``convert=boolean `` to ``take `` routines to translate negative
51
+ indices to positive, defaults to True
48
52
49
53
**Improvements to existing features **
50
54
@@ -64,15 +68,18 @@ pandas 0.11.0
64
68
strings that can be parsed with datetime.strptime
65
69
- Add ``axes `` property to ``Series `` for compatibility
66
70
- Add ``xs `` function to ``Series `` for compatibility
67
- - Allow setitem in a frame where only mixed numerics are present (e.g. int and float), (GH3037 _)
71
+ - Allow setitem in a frame where only mixed numerics are present (e.g. int
72
+ and float), (GH3037 _)
68
73
- ``HDFStore ``
69
74
70
75
- Provide dotted attribute access to ``get `` from stores
71
76
(e.g. store.df == store['df'])
72
- - New keywords ``iterator=boolean ``, and ``chunksize=number_in_a_chunk `` are
73
- provided to support iteration on ``select `` and ``select_as_multiple `` (GH3076 _)
77
+ - New keywords ``iterator=boolean ``, and ``chunksize=number_in_a_chunk ``
78
+ are provided to support iteration on ``select `` and
79
+ ``select_as_multiple `` (GH3076 _)
74
80
75
- - Add ``squeeze `` method to possibly remove length 1 dimensions from an object.
81
+ - Add ``squeeze `` method to possibly remove length 1 dimensions from an
82
+ object.
76
83
77
84
.. ipython :: python
78
85
@@ -168,7 +175,8 @@ pandas 0.11.0
168
175
- Internally, change all variables to be private-like (now have leading
169
176
underscore)
170
177
- Fixes for query parsing to correctly interpret boolean and != (GH2849 _, GH2973 _)
171
- - Fixes for pathological case on SparseSeries with 0-len array and compression (GH2931 _)
178
+ - Fixes for pathological case on SparseSeries with 0-len array and
179
+ compression (GH2931 _)
172
180
- Fixes bug with writing rows if part of a block was all-nan (GH3012 _)
173
181
- Exceptions are now ValueError or TypeError as needed
174
182
- A table will now raise if min_itemsize contains fields which are not queryables
@@ -231,6 +239,7 @@ pandas 0.11.0
231
239
- PeriodIndex.tolist now boxes to Period (GH3178 _)
232
240
- PeriodIndex.get_loc KeyError now reports Period instead of ordinal (GH3179 _)
233
241
- df.to_records bug when handling MultiIndex (GH3189)
242
+ - Fix Series.__getitem__ segfault when index less than -length (GH3168 _)
234
243
235
244
.. _GH622 : https://github.com/pydata/pandas/issues/622
236
245
.. _GH797 : https://github.com/pydata/pandas/issues/797
@@ -304,6 +313,7 @@ pandas 0.11.0
304
313
.. _GH3075 : https://github.com/pydata/pandas/issues/3075
305
314
.. _GH3094 : https://github.com/pydata/pandas/issues/3094
306
315
.. _GH3130 : https://github.com/pydata/pandas/issues/3130
316
+ .. _GH3168 : https://github.com/pydata/pandas/issues/3168
307
317
.. _GH3178 : https://github.com/pydata/pandas/issues/3178
308
318
.. _GH3179 : https://github.com/pydata/pandas/issues/3179
309
319
.. _GH3189 : https://github.com/pydata/pandas/issues/3189
0 commit comments