File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ pandas 0.10.0
99
99
instead. This is a legacy hack and can lead to subtle bugs.
100
100
- inf/-inf are no longer considered as NA by isnull/notnull. To be clear, this
101
101
is legacy cruft from early pandas. This behavior can be globally re-enabled
102
- using pandas.core.common.use_inf_as_na (#2050, #1919)
102
+ using the new option `` mode.use_inf_as_null `` (#2050, #1919)
103
103
- ``pandas.merge `` will now default to ``sort=False ``. For many use cases
104
104
sorting the join keys is not necessary, and doing it by default is wasteful
105
105
- ``names `` handling in file parsing: if explicit column `names ` passed,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ arise and we wish to also consider that "missing" or "null".
61
61
62
62
Until recently, for legacy reasons ``inf `` and ``-inf `` were also
63
63
considered to be "null" in computations. This is no longer the case by
64
- default; use the :func: ` ~pandas.core.common. use_inf_as_null ` function to recover it.
64
+ default; use the `` mode. use_inf_as_null `` option to recover it.
65
65
66
66
.. _missing.isnull :
67
67
You can’t perform that action at this time.
0 commit comments