PythonPandas-インデックス内のいずれかの要素がTrueであるかどうかを返します
インデックス内のすべての要素がTrueであるかどうかを返すには、 index.any()を使用します パンダのメソッド。
まず、必要なライブラリをインポートします-
import pandas as pd
いくつかのTrue(ゼロ以外)要素とFalse(ゼロ)要素を使用してインデックスを作成する-
index = pd.Index([15, 25, 0, 0, 55])
インデックスを表示-
print("Pandas Index...\n",index)
インデックス内のいずれかの要素がTrueの場合、Trueを返します。-
print("\nCheck whether any element in the index is True...\n",index.any())
例
以下はコードです-
import pandas as pd # Creating the index with some True (non-zero) and False (zero) elements index = pd.Index([15, 25, 0, 0, 55]) # Display the index print("Pandas Index...\n",index) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return True if any element in the index is True print("\nCheck whether any element in the index is True...\n",index.any())
出力
これにより、次のコードが生成されます-
Pandas Index... Int64Index([15, 25, 0, 0, 55], dtype='int64') A tuple of the shape of underlying data... (5,) Number of elements in the index... 5 Check whether any element in the index is True... True
-
Python-Pandasインデックスの最小値を返します
パンダインデックスの最小値を返すには、 index.min()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index([10.5, 20.4, 40.5, 25.6, 5.7, 6.8, 30.8, 50.2]) パンダのインデックスを表示する- print("Pandas Index...\n",index) 最小値を取得- print("\nMinimum value..\n", index.min()) 例 以下はコードです-
-
PythonPandas-IntervalArray内の各間隔の中点をインデックスとして返します
IntervalArray内の各間隔の中点をインデックスとして返すには、 array.midを使用します 財産。最初は まず、必要なライブラリをインポートします- import pandas as pd 2つのIntervalオブジェクトを作成します。値が「both」の「closed」パラメータを使用して設定された閉じた間隔- interval1 = pd.Interval(50, 75, closed='both') interval2 = pd.Interval(65, 90, closed='both') 間隔を表示する- print("I