We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dc8009 + ac85f84 commit 671b384Copy full SHA for 671b384
pandas/core/index.py
@@ -581,15 +581,17 @@ def is_monotonic(self):
581
582
@property
583
def is_monotonic_increasing(self):
584
- """ return if the index is monotonic increasing (only equal or
585
- increasing) values
+ """
+ return if the index is monotonic increasing (only equal or
586
+ increasing) values.
587
"""
588
return self._engine.is_monotonic_increasing
589
590
591
def is_monotonic_decreasing(self):
- """ return if the index is monotonic decreasing (only equal or
592
- decreasing values
593
+ return if the index is monotonic decreasing (only equal or
594
+ decreasing) values.
595
596
return self._engine.is_monotonic_decreasing
597
0 commit comments