หากต้องการคืนค่าจุดกึ่งกลางของช่วงเวลา ให้ใช้ interval.mid คุณสมบัติ. ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
ตั้งค่าช่วงเวลาเปิดโดยใช้พารามิเตอร์ "ปิด" ที่มีค่า "ไม่เลย" ช่วงเปิด (ในทางคณิตศาสตร์แสดงด้วยวงเล็บเหลี่ยม) ไม่มีจุดปลาย กล่าวคือ ช่วงเปิด [0, 5] ถูกกำหนดโดยเงื่อนไข 0
แสดงช่วงเวลา
กลับจุดกึ่งกลางของช่วงเวลา
ต่อไปนี้เป็นรหัส
ซึ่งจะได้รหัสดังต่อไปนี้interval = pd.Interval(5, 20, closed='neither')
print("Interval...\n",interval)
print("\nThe midpoint for the Interval...\n",interval.mid)
ตัวอย่าง
import pandas as pd
# Open interval set using the "closed" parameter with value "neither"
# An open interval (in mathematics denoted by square brackets) does not contains its endpoints,
# i.e. the open interval [0, 5] is characterized by the conditions 0 < x < 5.
interval = pd.Interval(5, 20, closed='neither')
# display the interval
print("Interval...\n",interval)
# display the interval length
print("\nInterval length...\n",interval.length)
# the left bound
print("\nThe left bound for the Interval...\n",interval.left)
# the right bound
print("\nThe right bound for the Interval...\n",interval.right)
# return the midpoint of the Interval
print("\nThe midpoint for the Interval...\n",interval.mid)
ผลลัพธ์
Interval...
(5, 20)
Interval length...
15
The left bound for the Interval...
5
The right bound for the Interval...
20
The midpoint for the Interval...
12.5