
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas IntervalIndex - Check if Intervals that share closed endpoints overlap
To check if Intervals that share closed endpoints overlap, use the IntervalIndex.is_overlapping property. At first, import the required libraries −
import pandas as pd
Create IntervalIndex. The intervals are closed on both the sides since the "closed" parameter is set "both" −
interval = pd.interval_range(0, 8, closed='both')
Display the interval −
print("IntervalIndex...\n",interval)
Check if the Intervals that share closed endpoints overlap −
print("\nDoes the Intervals that share closed endpoints overlap?\n",interval.is_overlapping)
Example
Following is the code −
import pandas as pd # Create IntervalIndex # The intervals are closed on both the sides since the "closed" parameter is set "both" interval = pd.interval_range(0, 8, closed='both') # Display the interval print("IntervalIndex...\n",interval) # Display the interval length print("\nIntervalIndex length...\n",interval.length) # Check if the Intervals that share closed endpoints overlap print("\nDoes the Intervals that share closed endpoints overlap?\n",interval.is_overlapping)
Output
This will produce the following output −
IntervalIndex... IntervalIndex([[0, 1], [1, 2], [2, 3], [3, 4], [4, 5], [5, 6], [6, 7], [7, 8]], dtype='interval[int64, both]') IntervalIndex length... Int64Index([1, 1, 1, 1, 1, 1, 1, 1], dtype='int64') Does the Intervals that share closed endpoints overlap? True
- Related Articles
- Python Pandas IntervalArray - Check Intervals that share closed endpoints overlap or not
- Python Pandas - Check whether two Interval objects that share closed endpoints overlap
- Python Pandas IntervalIndex - Check if Intervals that only have an open endpoint in common overlap or not
- Python Pandas - Check if the IntervalIndex has overlapping intervals
- Python Pandas - Check whether two Interval objects that share an open endpoint overlap
- Python Pandas - Check elementwise if the Intervals in the IntervalIndex contain the value
- Python Pandas - Check whether the IntervalIndex intervals are closed on the left-side, right-side, both or neither
- Check elementwise if the Intervals in the IntervalIndex contain the value in Python Pandas
- Python Pandas IntervalArray - Check Intervals that only have an open endpoint in common overlap or not
- Python Pandas - Create a half-closed time interval and check for existence of endpoints
- Python Pandas IntervalIndex - Check if an interval that contains points is empty or not
- Python Pandas - Create a closed time interval and check for existence of both the endpoints
- Check if any two intervals overlap among a given set of intervals in C++
- Python Pandas - Check whether two Interval objects overlap
- Python Pandas - Check elementwise if the Intervals contain the value

Advertisements