
| Current Path : /proc/thread-self/root/usr/local/lib/python3.8/dist-packages/pandas/tests/series/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/local/lib/python3.8/dist-packages/pandas/tests/series/test_npfuncs.py |
"""
Tests for np.foo applied to Series, not necessarily ufuncs.
"""
import numpy as np
from pandas import Series
class TestPtp:
def test_ptp(self):
# GH#21614
N = 1000
arr = np.random.randn(N)
ser = Series(arr)
assert np.ptp(ser) == np.ptp(arr)