Python
 Computer >> コンピューター >  >> プログラミング >> Python

PythonPandas-間隔の中間点を返します


間隔の中間点を返すには、 interval.midを使用します 財産。まず、必要なライブラリをインポートします-

import pandas as pd

値が「どちらでもない」の「closed」パラメーターを使用して設定されたオープン間隔。開区間(角括弧で示される数学)にはその端点が含まれていません。つまり、開区間[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

  1. PythonPandas-IntervalArray内の各間隔の適切なエンドポイントをインデックスとして返します

    IntervalArray内の各間隔の正しい端点をインデックスとして返すには、 array.rightを使用します プロパティ。 まず、必要なライブラリをインポートします- import pandas as pd 2つのIntervalオブジェクトを作成します- interval1 = pd.Interval(10, 25) interval2 = pd.Interval(15, 70) 間隔を表示する- print("Interval1...\n",interval1) print("Interval2...\n",interval2) Int

  2. pythonPandas-IntervalArrayの各間隔の左端をインデックスとして返します

    IntervalArrayの各間隔の左端をインデックスとして返すには、 array.leftを使用します プロパティ。 まず、必要なライブラリをインポートします- import pandas as pd 2つのIntervalオブジェクトを作成します- nterval1 = pd.Interval(10, 25) interval2 = pd.Interval(15, 70) 間隔を表示する- print("Interval1...\n",interval1) print("Interval2...\n",interval2) Intervalオ