forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv0.4.x.txt
77 lines (70 loc) · 3.84 KB
/
v0.4.x.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.. _whatsnew_04x:
v.0.4.3 through v0.4.1 (September 25 - October 9, 2011)
-------------------------------------------------------
New Features
~~~~~~~~~~~~
- Added Python 3 support using 2to3 (PR200_)
- :ref:`Added <dsintro.name_attribute>` ``name`` attribute to ``Series``, now
prints as part of ``Series.__repr__``
- :ref:`Added <missing.isnull>` instance methods ``isnull`` and ``notnull`` to
Series (PR209_, GH203_)
- :ref:`Added <basics.align>` ``Series.align`` method for aligning two series
with choice of join method (ENH56_)
- :ref:`Added <indexing.get_level_values>` method ``get_level_values`` to
``MultiIndex`` (IS188_)
- :ref:`Set <indexing.mixed_type_setting>` values in mixed-type
``DataFrame`` objects via ``.ix`` indexing attribute (GH135_)
- Added new ``DataFrame`` :ref:`methods <dsintro.column_types>`
``get_dtype_counts`` and property ``dtypes`` (ENHdc_)
- Added :ref:`ignore_index <merging.ignore_index>` option to
``DataFrame.append`` to stack DataFrames (ENH1b_)
- ``read_csv`` tries to :ref:`sniff <io.sniff>` delimiters using
``csv.Sniffer`` (PR146_)
- ``read_csv`` can :ref:`read <io.csv_multiindex>` multiple columns into a
``MultiIndex``; DataFrame's ``to_csv`` method writes out a corresponding
``MultiIndex`` (PR151_)
- ``DataFrame.rename`` has a new ``copy`` parameter to :ref:`rename
<basics.rename>` a DataFrame in place (ENHed_)
- :ref:`Enable <reshaping.unstack_by_name>` unstacking by name (PR142_)
- :ref:`Enable <indexing.sortlevel_byname>` ``sortlevel`` to work by level (PR141_)
Performance Enhancements
~~~~~~~~~~~~~~~~~~~~~~~~
- Altered binary operations on differently-indexed SparseSeries objects
to use the integer-based (dense) alignment logic which is faster with a
larger number of blocks (GH205_)
- Wrote faster Cython data alignment / merging routines resulting in
substantial speed increases
- Improved performance of ``isnull`` and ``notnull``, a regression from v0.3.0
(GH187_)
- Refactored code related to ``DataFrame.join`` so that intermediate aligned
copies of the data in each ``DataFrame`` argument do not need to be created.
Substantial performance increases result (GH176_)
- Substantially improved performance of generic ``Index.intersection`` and
``Index.union``
- Implemented ``BlockManager.take`` resulting in significantly faster ``take``
performance on mixed-type ``DataFrame`` objects (GH104_)
- Improved performance of ``Series.sort_index``
- Significant groupby performance enhancement: removed unnecessary integrity
checks in DataFrame internals that were slowing down slicing operations to
retrieve groups
- Optimized ``_ensure_index`` function resulting in performance savings in
type-checking Index objects
- Wrote fast time series merging / joining methods in Cython. Will be
integrated later into DataFrame.join and related functions
.. _PR146: https://github.com/pydata/pandas/pull/146
.. _ENH1b: https://github.com/pydata/pandas/commit/1ba56251f0013ff7cd8834e9486cef2b10098371
.. _ENHdc: https://github.com/pydata/pandas/commit/dca3c5c5a6a3769ee01465baca04cfdfa66a4f76
.. _GH135: https://github.com/pydata/pandas/issues/135
.. _PR151: https://github.com/pydata/pandas/pull/151
.. _ENHed: https://github.com/pydata/pandas/commit/edd9f1945fc010a57fa0ae3b3444d1fffe592591
.. _PR142: https://github.com/pydata/pandas/pull/142
.. _PR141: https://github.com/pydata/pandas/pull/141
.. _IS188: https://github.com/pydata/pandas/issues/188
.. _ENH56: https://github.com/pydata/pandas/commit/56e0c9ffafac79ce262b55a6a13e1b10a88fbe93
.. _GH187: https://github.com/pydata/pandas/issues/187
.. _GH176: https://github.com/pydata/pandas/issues/176
.. _GH104: https://github.com/pydata/pandas/issues/104
.. _GH205: https://github.com/pydata/pandas/issues/205
.. _PR209: https://github.com/pydata/pandas/pull/209
.. _GH203: https://github.com/pydata/pandas/issues/203
.. _PR200: https://github.com/pydata/pandas/pull/200