PythonPandas-基になるインデックスデータのバイト数を返します
基になるインデックスデータのバイト数を返すには、 index.nbytesを使用します プロパティ。
まず、必要なライブラリをインポートします-
import pandas as pd
インデックスの作成-
index = pd.Index([15, 25, 35, 45, 55])
インデックスを表示-
print("Pandas Index...\n",index)
データのバイトを取得します-
print("\nReturn the bytes...\n",index.nbytes)
例
以下はコードです-
import pandas as pd # Creating the index index = pd.Index([15, 25, 35, 45, 55]) # Display the index print("Pandas Index...\n",index) # Return an array representing the data in the Index print("\nArray...\n",index.values) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape) # get the bytes in the data print("\nReturn the bytes...\n",index.nbytes)
出力
これにより、次のコードが生成されます-
Pandas Index... Int64Index([15, 25, 35, 45, 55], dtype='int64') Array... [15 25 35 45 55] A tuple of the shape of underlying data... (5,) Return the bytes... 40
-
Python-PandasIndexがカテゴリデータを保持しているかどうかを確認します
Pandas Indexがカテゴリデータを保持しているかどうかを確認するには、 index.is_categorical()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd タイプをカテゴリに設定してPandasインデックスを作成する astype()を使用する メソッド- index = pd.Index(["Electronics","Accessories","Furniture"]).astype("category") パンダのイン
-
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