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

PythonPandas-基礎となるカテゴリに基づいてインデックスを作成します


基になるカテゴリに基づいてインデックスを作成するには、 pandas.CategoricalIndex()を使用します メソッド。

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

import pandas as pd

CategoricalIndexは、基礎となるCategoricalに基づくインデックスです。 CategoricalIndexは、限られた数の、通常は固定された数の可能な値のみを取ることができます。 「categories」パラメータを使用して、カテゴリのカテゴリを設定します。 「ordered」パラメータを使用して、カテゴリを順序どおりに扱います-

catIndex = pd.CategoricalIndex(
   ["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]
)

カテゴリインデックスを表示する-

print("Categorical Index...\n",catIndex)

カテゴリを取得-

print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)

以下はコードです-

import pandas as pd

# CategoricalIndex is the Index based on an underlying Categorical
# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter
catIndex = pd.CategoricalIndex(
   ["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]
)

# Display the Categorical Index
print("Categorical Index...\n",catIndex)

# Get the categories
print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)

# Get the min value
print("\nMinimum value from CategoricalIndex...\n",catIndex.min())

# Get the max value
print("\nMaximum value from CategoricalIndex...\n",catIndex.max())

出力

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

Categorical Index...
CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category')

DisplayingCategories from CategoricalIndex...
Index(['p', 'q', 'r', 's'], dtype='object')

Minimum value from CategoricalIndex...
p

Maximum value from CategoricalIndex...
S

  1. PythonPandas-インデックスの要素を繰り返す

    インデックスの要素を繰り返すには、 index.repeat()を使用します パンダのメソッド。繰り返し回数を引数として設定します。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport') パンダのインデックスを表示する- print("

  2. PythonPandas-インデックス名を変更

    インデックス名を変更するには、 index.rename()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index(['Car','Bike','Airplane', 'Ship','Truck','Suburban'], name ='Transport') パンダのインデックスを表示する- print("Pandas Index...\n&qu