PythonPandasCategoricalIndex-新しいカテゴリを追加
新しいカテゴリを追加するには、CategoricalIndex add_categories()を使用します パンダのメソッド。まず、必要なライブラリをインポートします-
import pandas as pd
「categories」パラメータを使用して、カテゴリのカテゴリを設定します。 「ordered」パラメータを使用して、カテゴリを順序どおりに扱います-
catIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])
CategoricalIndexを表示する-
print("CategoricalIndex...\n",catIndex)
add_categories()を使用して新しいカテゴリを追加します。新しいカテゴリをパラメータとして設定します。新しいカテゴリは、カテゴリの最後/最高の場所に含まれます-
print("\nCategoricalIndex after adding new categories...\n",catIndex.add_categories(["a", "b", "c", "d"]))
例
以下はコードです-
import pandas as pd # CategoricalIndex can only take on a limited, and usually fixed, number of possible values (categories # 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 CategoricalIndex print("CategoricalIndex...\n",catIndex) # Get the categories print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories) # Add new categories using add_categories() # Set the new categories as a parameter # The new categories will be included at the last/highest place in the categories print("\nCategoricalIndex after adding new categories...\n",catIndex.add_categories(["a", "b", "c", "d"]))
出力
これにより、次の出力が生成されます-
CategoricalIndex... 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') CategoricalIndex after adding new categories... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's', 'a', 'b', 'c', 'd'], ordered=True, dtype='category')
-
Pythonでadd()を設定する
このチュートリアルでは、追加について学習します。 データ構造を設定する方法。チュートリアルに飛び込みましょう。 設定 データ構造には、固有の要素が格納されます。 追加 データ構造を設定する方法は要素を取ります セットに追加します。 以下の手順に従って、セットに新しい要素を追加します。 セットを初期化します。 addメソッドを使用してセットに新しい要素を追加します。 更新されたセットを印刷します。 例 # initialzing the set numbers_set = {1, 2, 3, 4, 4, 5} # adding an element to the set numbers_
-
PythonのPandasの既存のDataFrameに新しい列を追加する
このチュートリアルでは、パンダの既存のDataFrameに新しい列を追加する方法を学習します。新しい列を追加するには、さまざまな方法があります。それらすべてをしましょう。 リストの使用 リストを使用して新しい列を追加できます。手順に従って、新しい列を追加します。 アルゴリズム 1. Create DataFrame using a dictionary. 2. Create a list containing new column data. Make sure that the length of the list matches the length of the data which