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

Python Pandas-元のインデックスからDataFrameを作成しますが、新しいインデックスを適用します


元のインデックスからDataFrameを作成し、新しいインデックスを適用するには、index.to_frame()を使用します。パラメータインデックスを設定します 誤りへ 。

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

import pandas as pd

パンダインデックスの作成-

index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products')

パンダのインデックスを表示する

print("Pandas Index...\n",index)

新しいインデックスを適用し、インデックスをDataFrameに変換します。ここで、実際のインデックスは別のインデックスに置き換えられます-

print("\nIndex to DataFrame...\n",index.to_frame(index=False))

以下はコードです-

import pandas as pd

# Creating Pandas index
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'],name ='Products')

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Enforce new index and convert index to DataFrame
# Here, the actual index gets replaced by another index
print("\nIndex to DataFrame...\n",index.to_frame(index=False))

出力

これにより、次の出力が生成されます-

Pandas Index...
Index(['Electronics', 'Accessories', 'Decor', 'Books', 'Toys'], dtype='object', name='Products')

Number of elements in the index...
5

The dtype object...
object

Index to DataFrame...
      Products
0  Electronics
1  Accessories
2        Decor
3        Books
4         Toys

  1. Python –Pandasデータフレームのマルチレベル列インデックスからレベルを削除します

    マルチレベルの列インデックスからレベルを削除するには、columns.droplevel()を使用します。 Multiindex.from_tuples()を使用して、列ごとにインデックスを作成しました。 最初に、列ごとにインデックスを作成します- items = pd.MultiIndex.from_tuples([("Col 1", "Col 1", "Col 1"),("Col 2", "Col 2", "Col 2"),("Col 3", &qu

  2. Pythonで同じ長さのリストのdictからPandasデータフレームを作成します

    パンダのデータフレームは、さまざまなオプションを使用して作成できます。オプションの1つは、辞書を取得してデータフレームに変換することです。この記事では、同じ長さの3つのリストを取得し、Pythonディクショナリを使用してそれらをパンダデータフレームに変換する方法を説明します。 リストと辞書の使用 このアプローチでは、リストを個別に宣言します。次に、それらのそれぞれが、ディクショナリ定義内の適切なキーの値として使用されます。最後に、pd.Dataframeと呼ばれるパンダメソッドがディクショナリに適用されます。 例 import pandas as pd # Lists for Exam s