@@ -35,7 +35,12 @@ pandas 0.11.0
35
35
Yahoo! finance (GH2795 _)
36
36
- Add ``squeeze `` function to reduce dimensionality of 1-len objects
37
37
- Support slicing with time objects (GH2681 _)
38
- - Add ``.iloc `` attribute, to support location-based indexing, analagous to ``.ix ``
38
+ - Added ``.iloc `` attribute, to support strict integer based indexing, analagous to ``.ix `` (GH2922 _)
39
+ - Added ``.loc `` attribute, to support strict label based indexing, analagous to ``.ix ``
40
+ - Added ``.iat `` attribute, to support fast scalar access via integers (replaces ``iget_value/iset_value ``)
41
+ - Added ``.at `` attribute, to support fast scalar access via labels (replaces ``get_value/set_value ``)
42
+ - Moved functionaility from ``irow,icol,iget_value/iset_value `` to ``.iloc `` indexer
43
+ (via ``_ixs `` methods in each object)
39
44
40
45
**Improvements to existing features **
41
46
@@ -52,6 +57,7 @@ pandas 0.11.0
52
57
- ``describe_option() `` now reports the default and current value of options.
53
58
- Add ``format `` option to ``pandas.to_datetime `` with faster conversion of
54
59
strings that can be parsed with datetime.strptime
60
+ - Add ``axes `` property to ``Series `` for compatibility
55
61
56
62
**API Changes **
57
63
@@ -129,6 +135,7 @@ pandas 0.11.0
129
135
- Bug in argsort of ``datetime64[ns] `` Series with ``NaT `` (GH2967 _)
130
136
- Bug in idxmin/idxmax of ``datetime64[ns] `` Series with ``NaT `` (GH2982 __)
131
137
- ``icol `` with negative indicies was return ``nan `` (see GH2922 _)
138
+ - Bug in ``icol `` with negative indicies was incorrect producing incorrect return values (see GH2922 _)
132
139
133
140
.. _GH622 : https://github.com/pydata/pandas/issues/622
134
141
.. _GH797 : https://github.com/pydata/pandas/issues/797
0 commit comments