Python Pandas - 返回间隔的中点
要返回间隔的中点,请使用 interval.mid 属性。首先,导入所需的库 -
import pandas as pd
使用值“neither”的“closed”参数打开间隔集。开放间隔(数学中表示为方括号)不包含其端点,即开放间隔 [0, 5] 的特征是条件 0 < x < 5
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
广告