ในการรับจุดกึ่งกลางจาก IntervalIndex ให้ใช้คุณสมบัติ interval.mid ใน Pandas ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
สร้าง IntervalIndex -
interval = pd.IntervalIndex.from_arrays([10, 15, 20], [20, 25, 30])
แสดงช่วงเวลา -
print("IntervalIndex...\n",interval)
กลับจุดกึ่งกลางของช่วงเวลา -
print("\nThe midpoint for the Interval...\n",interval.mid)
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd # Create IntervalIndex interval = pd.IntervalIndex.from_arrays([10, 15, 20], [20, 25, 30]) # Display the interval print("IntervalIndex...\n",interval) # Display the interval length print("\nIntervalIndex length...\n",interval.length) # Check whether the IntervalIndex is closed on the left-side, right-side, both or neither print("\nChecking for the type of IntervalIndex...\n",interval.closed) # the left bound print("\nThe left bound for the IntervalIndex...\n",interval.left) # the right bound print("\nThe right bound for the IntervalIndex...\n",interval.right) # return the midpoint of the Interval print("\nThe midpoint for the Interval...\n",interval.mid)
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
IntervalIndex... IntervalIndex([(10, 20], (15, 25], (20, 30]], dtype='interval[int64, right]') IntervalIndex length... Int64Index([10, 10, 10], dtype='int64') Checking for the type of IntervalIndex... right The left bound for the IntervalIndex... Int64Index([10, 15, 20], dtype='int64') The right bound for the IntervalIndex... Int64Index([20, 25, 30], dtype='int64') The midpoint for the Interval... Float64Index([15.0, 20.0, 25.0], dtype='float64')