File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
Expand file tree Collapse file tree 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):
852852 # to disable groupby tricks
853853 return True
854854
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-
863855 @cache_readonly
864856 def is_monotonic_increasing (self ):
865857 """
@@ -887,10 +879,6 @@ def is_monotonic_decreasing(self):
887879 # monotonic decreasing if and only if reverse is monotonic increasing
888880 return self [::- 1 ].is_monotonic_increasing
889881
890- @cache_readonly
891- def is_unique (self ):
892- return not self .duplicated ().any ()
893-
894882 @cache_readonly
895883 def _have_mixed_levels (self ):
896884 """ return a boolean list indicated if we have mixed levels """
You can’t perform that action at this time.
0 commit comments