File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,27 @@ analysis / manipulation tool available in any language.
3737* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
3838* Documentation: http://pandas.pydata.org
3939
40+ pandas 0.22.0
41+ -------------
42+
43+ **Release date: ** December 29, 2017
44+
45+ This is a major release from 0.21.1 and includes a single, API-breaking change.
46+ We recommend that all users upgrade to this version after carefully reading the
47+ release note.
48+
49+ The only changes are:
50+
51+ - The sum of an empty or all-*NA * ``Series `` is now ``0 ``
52+ - The product of an empty or all-*NA * ``Series `` is now ``1 ``
53+ - We've added a ``min_count `` parameter to ``.sum() `` and ``.prod() `` controlling
54+ the minimum number of valid values for the result to be valid. If fewer than
55+ ``min_count `` non-*NA * values are present, the result is *NA *. The default is
56+ ``0 ``. To return ``NaN ``, the 0.21 behavior, use ``min_count=1 ``.
57+
58+ See the :ref: `v0.22.0 Whatsnew <whatsnew_0220 >` overview for further explanation
59+ of all the places in the library this affects.
60+
4061pandas 0.21.1
4162-------------
4263
Original file line number Diff line number Diff line change 11.. _whatsnew_0220:
22
3- v0.22.0
4- -------
3+ v0.22.0 (December 29, 2017)
4+ ---------------------------
55
66This is a major release from 0.21.1 and includes a single, API-breaking change.
77We recommend that all users upgrade to this version after carefully reading the
You can’t perform that action at this time.
0 commit comments