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 56b4e2b commit b38b200Copy full SHA for b38b200
pandas/core/series.py
@@ -6187,8 +6187,8 @@ def isna(self) -> Series:
6187
6188
def isnull(self) -> Series:
6189
"""
6190
- Series.isnull is an alias for Series.isna.
6191
-
+ Series.isnull is an alias for Series.isna.
+
6192
Detect missing values.
6193
6194
Return a boolean same-sized object indicating if the values are NA.
@@ -6329,8 +6329,8 @@ def notna(self) -> Series:
6329
6330
def notnull(self) -> Series:
6331
6332
- Series.notnull is an alias for Series.notna.
6333
+ Series.notnull is an alias for Series.notna.
6334
Detect existing (non-missing) values.
6335
6336
Return a boolean same-sized object indicating if the values are not NA.
0 commit comments