@@ -29,12 +29,19 @@ pandas 0.11.0
29
29
30
30
**New features **
31
31
32
+ - New documentation section, ``10 Minutes to Pandas ``
32
33
- Allow mixed dtypes (e.g ``float32/float64/int32/int16/int8 ``) to coexist in
33
34
DataFrames and propogate in operations
34
35
- Add function to pandas.io.data for retrieving stock index components from
35
36
Yahoo! finance (GH2795 _)
36
37
- Add ``squeeze `` function to reduce dimensionality of 1-len objects
37
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 ``
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 ``)
43
+ - Moved functionaility from ``irow,icol,iget_value/iset_value `` to ``.iloc `` indexer
44
+ (via ``_ixs `` methods in each object)
38
45
39
46
**Improvements to existing features **
40
47
@@ -51,6 +58,8 @@ pandas 0.11.0
51
58
- ``describe_option() `` now reports the default and current value of options.
52
59
- Add ``format `` option to ``pandas.to_datetime `` with faster conversion of
53
60
strings that can be parsed with datetime.strptime
61
+ - Add ``axes `` property to ``Series `` for compatibility
62
+ - Add ``xs `` function to ``Series `` for compatibility
54
63
55
64
**API Changes **
56
65
@@ -127,6 +136,7 @@ pandas 0.11.0
127
136
- Bug on in-place putmasking on an ``integer `` series that needs to be converted to ``float `` (GH2746 _)
128
137
- Bug in argsort of ``datetime64[ns] `` Series with ``NaT `` (GH2967 _)
129
138
- Bug in idxmin/idxmax of ``datetime64[ns] `` Series with ``NaT `` (GH2982 __)
139
+ - Bug in ``icol `` with negative indicies was incorrect producing incorrect return values (see GH2922 _)
130
140
131
141
.. _GH622 : https://github.com/pydata/pandas/issues/622
132
142
.. _GH797 : https://github.com/pydata/pandas/issues/797
@@ -145,6 +155,7 @@ pandas 0.11.0
145
155
.. _GH2849 : https://github.com/pydata/pandas/issues/2849
146
156
.. _GH2898 : https://github.com/pydata/pandas/issues/2898
147
157
.. _GH2909 : https://github.com/pydata/pandas/issues/2909
158
+ .. _GH2922 : https://github.com/pydata/pandas/issues/2922
148
159
.. _GH2931 : https://github.com/pydata/pandas/issues/2931
149
160
.. _GH2973 : https://github.com/pydata/pandas/issues/2973
150
161
.. _GH2967 : https://github.com/pydata/pandas/issues/2967
0 commit comments