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 4674696 commit 959f0e2Copy full SHA for 959f0e2
pandas/core/series.py
@@ -575,7 +575,7 @@ def nonzero(self):
575
"""
576
msg = ("Series.nonzero() is deprecated "
577
"and will be removed in a future version."
578
- "Use Series.to_numpy().non_zero() instead")
+ "Use Series.to_numpy().nonzero() instead")
579
warnings.warn(msg, FutureWarning, stacklevel=2)
580
return self._values.nonzero()
581
0 commit comments