닫힌 끝점을 공유하는 간격이 겹치는지 확인하려면 IntervalIndex.is_overlapping을 사용하세요. 특성. 먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
IntervalIndex를 생성합니다. "closed" 매개변수가 "both"로 설정되어 있으므로 간격이 양쪽에서 닫힙니다. -
interval = pd.interval_range(0, 8, closed='both')
간격 표시 -
print("IntervalIndex...\n",interval)
닫힌 끝점을 공유하는 간격이 겹치는지 확인하십시오 -
print("\nDoes the Intervals that share closed endpoints overlap?\n",interval.is_overlapping)
예시
다음은 코드입니다 -
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)
출력
이것은 다음과 같은 출력을 생성합니다 -
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