@@ -51,6 +51,7 @@ pandas 0.10.1
51
51
- added support for datetime64 in columns
52
52
- added method ``unique `` to select the unique values in an indexable or data column
53
53
- added method ``copy `` to copy an existing store (and possibly upgrade)
54
+ - show the shape of the data on disk for non-table stores when printing the store
54
55
- Add ``logx `` option to DataFrame/Series.plot (GH2327 _, #2565)
55
56
- Support reading gzipped data from file-like object
56
57
- ``pivot_table `` aggfunc can be anything used in GroupBy.aggregate (GH2643 _)
@@ -64,6 +65,7 @@ pandas 0.10.1
64
65
- raise correctly on non-implemented column types (unicode/date)
65
66
- handle correctly ``Term `` passed types (e.g. ``index<1000 ``, when index
66
67
is ``Int64 ``), (closes GH512 _)
68
+ - handle Timestamp correctly in data_columns (closes GH2637 _)
67
69
- Fix DataFrame.info bug with UTF8-encoded columns. (GH2576 _)
68
70
- Fix DatetimeIndex handling of FixedOffset tz (GH2604 _)
69
71
- More robust detection of being in IPython session for wide DataFrame
@@ -79,18 +81,20 @@ pandas 0.10.1
79
81
80
82
- ``HDFStore ``
81
83
84
+ - refactored HFDStore to deal with non-table stores as objects, will allow future enhancements
82
85
- removed keyword ``compression `` from ``put `` (replaced by keyword
83
86
``complib `` to be consistent across library)
84
87
85
88
.. _GH512 : https://github.com/pydata/pandas/issues/512
86
89
.. _GH1277 : https://github.com/pydata/pandas/issues/1277
87
90
.. _GH2327 : https://github.com/pydata/pandas/issues/2327
88
- .. _GH2576 : https://github.com/pydata/pandas/issues/2576
89
91
.. _GH2585 : https://github.com/pydata/pandas/issues/2585
90
92
.. _GH2604 : https://github.com/pydata/pandas/issues/2604
93
+ .. _GH2576 : https://github.com/pydata/pandas/issues/2576
91
94
.. _GH2616 : https://github.com/pydata/pandas/issues/2616
92
95
.. _GH2625 : https://github.com/pydata/pandas/issues/2625
93
96
.. _GH2643 : https://github.com/pydata/pandas/issues/2643
97
+ .. _GH2637 : https://github.com/pydata/pandas/issues/2637
94
98
95
99
pandas 0.10.0
96
100
=============
0 commit comments