File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -852,14 +852,6 @@ def _has_complex_internals(self):
852
852
# to disable groupby tricks
853
853
return True
854
854
855
- @cache_readonly
856
- def is_monotonic (self ):
857
- """
858
- return if the index is monotonic increasing (only equal or
859
- increasing) values.
860
- """
861
- return self .is_monotonic_increasing
862
-
863
855
@cache_readonly
864
856
def is_monotonic_increasing (self ):
865
857
"""
@@ -887,10 +879,6 @@ def is_monotonic_decreasing(self):
887
879
# monotonic decreasing if and only if reverse is monotonic increasing
888
880
return self [::- 1 ].is_monotonic_increasing
889
881
890
- @cache_readonly
891
- def is_unique (self ):
892
- return not self .duplicated ().any ()
893
-
894
882
@cache_readonly
895
883
def _have_mixed_levels (self ):
896
884
""" return a boolean list indicated if we have mixed levels """
You can’t perform that action at this time.
0 commit comments