Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas IntervalIndex - 레이블이 여러 간격에 있는 경우 모든 관련 간격의 위치 가져오기

<시간/>

레이블이 여러 간격에 있는 경우 모든 관련 간격의 위치를 ​​얻으려면 get_loc() Pandas의 메소드

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

두 개의 Interval 개체를 만듭니다. 값이 "both"인 "closed" 매개변수를 사용하여 설정된 닫힌 간격

interval1 = pd.Interval(50, 75)
interval2 = pd.Interval(75, 90)
interval3 = pd.Interval(50, 90)

세 개의 간격에서 IntervalIndex 생성 -

index = pd.IntervalIndex([interval1, interval2, interval3])

레이블이 여러 간격으로 있는 경우 모든 관련 간격의 위치 가져오기 -

print("\nGet the locations of all the relevant interval...\n",index.get_loc(65))

예시

다음은 코드입니다 -

import pandas as pd

# Create two Interval objects
# Closed intervals set using the "closed" parameter with value "both"
interval1 = pd.Interval(50, 75)
interval2 = pd.Interval(75, 90)
interval3 = pd.Interval(50, 90)

# display the intervals
print("Interval1...\n",interval1)
print("Interval2...\n",interval2)
print("Interval3...\n",interval3)

# Create IntervalIndex from the three intervals
index = pd.IntervalIndex([interval1, interval2, interval3])

# Get the locations of all the relevant interval if a label is in several intervals
print("\nGet the locations of all the relevant interval...\n",index.get_loc(65))

출력

이것은 다음과 같은 출력을 생성합니다 -

Interval1...
(50, 75]
Interval2...
(75, 90]
Interval3...
(50, 90]

Get the locations of all the relevant interval...
[ True False True]