Python Pandas - 從 IntervalIndex 獲取中點


要從 IntervalIndex 獲取中點,請在 Pandas 中使用 interval.mid 屬性。首先,匯入所需的庫 −

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')

更新於: 18-Oct-2021

363 次瀏覽

開啟你的 職業生涯

透過完成本課程獲得認證

開始
廣告
© . All rights reserved.