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

Python Pandas - 왼쪽에서 간격이 닫혀 있는지 확인

<시간/>

Interval이 왼쪽에서 닫혀 있는지 확인하려면 interval.closed_left 속성을 사용하세요. . 먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

값이 "left"인 "closed" 매개변수를 사용하여 설정된 간격, 즉 [0, 5)는 closed='left'

일 때 0 <=x <5로 설명됩니다.
interval = pd.Interval(left=0, right=20, closed='left')

간격 표시

print("Interval...\n",interval)

왼쪽에서 간격이 닫혀 있는지 확인하십시오.

print("\nChecking whether the Interval is closed on the left...\n", interval.closed_left)

예시

다음은 코드입니다.

import pandas as pd

# Interval set using the "closed" parameter with value "left"
# i.e. [0, 5) is described by 0 <= x < 5 when closed='left'
interval = pd.Interval(left=0, right=20, closed='left')

# display the interval
print("Interval...\n",interval)

# display the interval length
print("\nInterval length...\n",interval.length)

# check whether the interval is closed on the left-side
print("\nChecking whether the Interval is closed on the left...\n", interval.closed_left)

출력

그러면 다음 코드가 생성됩니다.

Interval...
[0, 20)

Interval length...
20

Checking whether the Interval is closed on the left...
True