Skip to content

Commit 3e2d1ed

Browse files
committed
fixed merge issues
1 parent 8b2fd36 commit 3e2d1ed

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

doc/source/whatsnew/v0.21.0.txt

-4
Original file line numberDiff line numberDiff line change
@@ -298,13 +298,9 @@ Performance Improvements
298298
~~~~~~~~~~~~~~~~~~~~~~~~
299299

300300
- Improved performance of instantiating :class:`SparseDataFrame` (:issue:`16773`)
301-
<<<<<<< HEAD
302301
- Improved performance of :func:`median()` when bottleneck is not installed but :func:`np.namnmedian` is present (:issue:`16468`)
303302
- :attr:`Series.dt` no longer performs frequency inference, yielding a large speedup when accessing the attribute (:issue:`17210`)
304-
=======
305-
- :attr:`Series.dt` no longer performs frequency inference, yielding a large speedup when accessing the attribute (:issue:`17210`)
306303

307-
>>>>>>> 34c4ffd7c454848311f71e6869b5cad4bc132449
308304

309305
.. _whatsnew_0210.bug_fixes:
310306

pandas/core/nanops.py

-2
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,6 @@ def reduction(values, axis=None, skipna=True):
494494
nanmax = _nanminmax('max', fill_value_typ='-inf')
495495

496496

497-
498497
@disallow('O')
499498
def nanargmax(values, axis=None, skipna=True):
500499
"""
@@ -506,7 +505,6 @@ def nanargmax(values, axis=None, skipna=True):
506505
return result
507506

508507

509-
510508
@disallow('O')
511509
def nanargmin(values, axis=None, skipna=True):
512510
"""

0 commit comments

Comments
 (0)