File tree 2 files changed +23
-2
lines changed
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.
37
37
* Binary installers on PyPI: http://pypi.python.org/pypi/pandas
38
38
* Documentation: http://pandas.pydata.org
39
39
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
+
40
61
pandas 0.21.1
41
62
-------------
42
63
Original file line number Diff line number Diff line change 1
1
.. _whatsnew_0220:
2
2
3
- v0.22.0
4
- -------
3
+ v0.22.0 (December 29, 2017)
4
+ ---------------------------
5
5
6
6
This is a major release from 0.21.1 and includes a single, API-breaking change.
7
7
We recommend that all users upgrade to this version after carefully reading the
You can’t perform that action at this time.
0 commit comments