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

PythonPandas-インデックスによって選択された値の新しいインデックスを返します


インデックスによって選択された値の新しいインデックスを返すには、 index.take()を使用します パンダのメソッド。まず、必要なライブラリをインポートします-

import pandas as pd

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

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

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

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

インデックスによって選択された値の新しいインデックスを取得する-

print("\nA new Index of the values selected by the indices...\n",index.take([1,2]))

以下はコードです-

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)

# Getting a new index of the values selected by indices
print("\nA new Index of the values selected by the indices...\n",index.take([1,2]))

出力

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

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

Number of elements in the index...
5

The dtype object...
object

A new Index of the values selected by the indices...
Index(['Accessories', 'Decor'], dtype='object', name='Products')

  1. Python-Pandasインデックスの最大値を返します

    パンダインデックスの最大値を返すには、 index.max()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成 index = pd.Index([10, 20, 70, 40, 90, 50, 25, 30]) パンダのインデックスを表示する- print("Pandas Index...\n",index) 最大値を取得- print("\nMaximum value..\n", index.max()) 例 以下はコードです- import pandas a

  2. 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()) 例 以下はコードです-