Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - ตรวจสอบว่าช่วงปิดอยู่ทางด้านซ้าย ด้านขวา ทั้งสองหรือไม่


ในการตรวจสอบว่าช่วงเวลาปิดทางด้านซ้าย ด้านขวา หรือทั้งสองอย่างหรือไม่ ให้ใช้คุณสมบัติ interval.closed

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

ตั้งค่าช่วงปิดโดยใช้พารามิเตอร์ "ปิด" ที่มีค่า "ทั้งสอง" ช่วงปิด (ในทางคณิตศาสตร์แสดงด้วยวงเล็บเหลี่ยม) มีจุดสิ้นสุด # เช่น ช่วงปิด [0, 5] มีลักษณะเป็นเงื่อนไข 0 <=x <=5

interval = pd.Interval(left=0, right=20, closed='both')

แสดงช่วงเวลา

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

ตรวจสอบว่าช่วงปิดที่ด้านซ้าย ด้านขวา ทั้งสองหรือไม่

print("\nChecking for the type of Interval...\n",interval.closed)

ตัวอย่าง

ต่อไปนี้เป็นรหัส

import pandas as pd

# Closed interval set using the "closed" parameter with value "both"
# A closed interval (in mathematics denoted by square brackets) contains its endpoints,
# i.e. the closed interval [0, 5] is characterized by the conditions 0 <= x <= 5.
interval = pd.Interval(left=0, right=20, closed='both')

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

# check whether the interval is closed on the left-side, right-side, both or neither
print("\nChecking for the type of Interval...\n",interval.closed)

# check for the existence of an element in an Interval
# This shows that closed = both contains its endpoints
print("\nThe left-most element exists in the Interval? = \n",0 in interval)
print("\nThe right-most element exists in the Interval? = \n",20 in interval)

ผลลัพธ์

ซึ่งจะได้รหัสดังต่อไปนี้

Interval...
[0, 20]

Checking for the type of Interval...
both