We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49114a2 commit 03d7117Copy full SHA for 03d7117
pandas/core/series.py
@@ -6182,9 +6182,7 @@ def isna(self) -> Series:
6182
6183
def isnull(self) -> Series:
6184
"""
6185
-
6186
Series.isnull is an alias for Series.isna.
6187
6188
Detect missing values.
6189
6190
Return a boolean same-sized object indicating if the values are NA.
@@ -6325,9 +6323,7 @@ def notna(self) -> Series:
6325
6323
6326
6324
def notnull(self) -> Series:
6327
6328
6329
Series.notnull is an alias for Series.notna.
6330
6331
Detect existing (non-missing) values.
6332
6333
Return a boolean same-sized object indicating if the values are not NA.
0 commit comments