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

Python Pandas-分割の配列からIntervalArrayを作成し、間隔が左側または右側、両方またはどちらでも閉じていることを確認します


分割の配列からIntervalArrayを作成するには、 pandas.arrays.IntervalArray.from_breaks()。を使用します。

間隔が左側または右側で閉じているか、両方とも閉じているかを確認するには、array.closedプロパティを使用します。

まず、必要なライブラリをインポートします-

import pandas as pd

配列のような分割から新しいIntervalArrayを作成します。間隔はデフォルトで「右側」で閉じられます-

array = pd.arrays.IntervalArray.from_breaks([0, 1, 2, 3, 4, 5])

間隔を表示する-

print("Our IntervalArray...\n",array)

間隔配列の間隔が左側、右側、両方で閉じているか、どちらも閉じていないかを確認します-

print("\nChecking whether the intervals is closed...\n",array.closed)

以下はコードです-

import pandas as pd

# Construct a new IntervalArray from an array-like of splits
# the intervals are closed on the "right" by default
array = pd.arrays.IntervalArray.from_breaks([0, 1, 2, 3, 4, 5])

# Display the IntervalArray
print("Our IntervalArray...\n",array)

# Getting the length of IntervalArray
# Returns an Index with entries denoting the length of each Interval in the IntervalArray
print("\nOur IntervalArray length...\n",array.length)

# midpoint of each Interval in the IntervalArray as an Index
print("\nThe midpoint of each interval in the IntervalArray...\n",array.mid)

# get the right endpoints
print("\nThe right endpoints of each Interval in the IntervalArray as an Index...\n",array.right)

# check whether the intervals in the Interval Array is closed on the left-side, right-side,
# both or neither
print("\nChecking whether the intervals is closed...\n",array.closed)

出力

これにより、次のコードが生成されます-

Our IntervalArray...
<IntervalArray>
[(0, 1], (1, 2], (2, 3], (3, 4], (4, 5]]
Length: 5, dtype: interval[int64, right]

Our IntervalArray length...
Int64Index([1, 1, 1, 1, 1], dtype='int64')

The midpoint of each interval in the IntervalArray...
Float64Index([0.5, 1.5, 2.5, 3.5, 4.5], dtype='float64')

The right endpoints of each Interval in the IntervalArray as an Index...
Int64Index([1, 2, 3, 4, 5], dtype='int64')

Checking whether the intervals is closed...
Right

  1. Python Pandas-IntervalArrayの間隔が左側、右側、両方で閉じているか、どちらも閉じていないかを確認します

    IntervalArrayの間隔が左側、右側、またはその両方で閉じられているかどうかを確認するには、 array.closedを使用します。 プロパティ。 まず、必要なライブラリをインポートします- import pandas as pd 2つのIntervalオブジェクトを作成します。値が「both」の「closed」パラメーターを使用して設定された閉じた間隔。閉じた区間(角括弧で示される数学)には、その端点が含まれます。つまり、閉じた区間[0、5]は、条件0 <=x <=5-によって特徴付けられます。 interval1 = pd.Interval(10, 25, closed=

  2. Python Pandas –両方のDataFrameからデカルト積をマージして作成します

    Pandas DataFrameをマージするには、 merge()を使用します 働き。デカルト積は、「方法」で設定することにより、両方のDataFrameに実装されます。 ” merge()関数のパラメータ、つまり- how = “cross” まず、エイリアスを使用してpandasライブラリをインポートしましょう- import pandas as pd DataFrame1を作成する- dataFrame1 = pd.DataFrame(    {       "Car": ['BM