간격에 대한 올바른 경계를 얻으려면 interval.right 를 사용하십시오. 특성. 먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
타임스탬프를 경계로 사용하여 시간 간격을 만듭니다. 값이 "right"인 "closed" 매개변수를 사용하여 설정된 닫힌 간격 -
interval = pd.Interval(pd.Timestamp('2020-01-01 00:00:00'), pd.Timestamp('2021-01-01 00:00:00'), closed='left')
올바른 경계 얻기 -
print("\nThe right bound for the Interval...\n",interval.right)
예시
다음은 코드입니다 -
import pandas as pd # Use Timestamps as the bounds to create a time interval # Closed interval set using the "closed" parameter with value "right" interval = pd.Interval(pd.Timestamp('2020-01-01 00:00:00'), pd.Timestamp('2021-01-01 00:00:00'), closed='left') # display the interval print("Interval...\n",interval) # display the interval length print("\nInterval length...\n",interval.length) # get the right bound print("\nThe right bound for the Interval...\n",interval.right)
출력
이것은 다음 코드를 생성합니다 -
Interval... [2020-01-01, 2021-01-01) Interval length... 366 days 00:00:00 The right bound for the Interval... 2021-01-01 00:00:00