VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pandas-index-is_monotonic_decreasing/

⇱ Python | Pandas Index.is_monotonic_decreasing - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Pandas Index.is_monotonic_decreasing

Last Updated : 20 Feb, 2019
Pandas Index is an immutable ndarray implementing an ordered, sliceable set. It is the basic object which stores the axis labels for all pandas objects. Pandas Index.is_monotonic_decreasing attribute return True if the underlying data in the given Index object is monotonically decreasing else it return False.
Syntax: Index.is_monotonic_decreasing Parameter : None Returns : boolean
Example #1: Use Index.is_monotonic_decreasing attribute to find out if the underlying data in the given Index object is monotonically decreasing or not. Output : 👁 Image
Now we will use Index.is_monotonic_decreasing attribute to find out if the underlying data in the given Index object is monotonically decreasing or not. Output : 👁 Image
As we can see in the output, the Index.is_monotonic_decreasing attribute has returned True indicating that the underlying data of the given Index object is monotonically decreasing.   Example #2 : Use Index.is_monotonic_decreasing attribute to find out if the underlying data in the given Index object is monotonically decreasing or not. Output : 👁 Image
Now we will use Index.is_monotonic_decreasing attribute to find out if the underlying data in the given Index object is monotonically decreasing or not.
Output : 👁 Image
As we can see in the output, the Index.is_monotonic_decreasing attribute has returned False indicating that the underlying data of the given Index object is not monotonically decreasing.
Comment