नई श्रेणियां जोड़ने के लिए, CategoricalIndex add_categories() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
"श्रेणियों" पैरामीटर का उपयोग करके श्रेणीबद्ध के लिए श्रेणियां सेट करें। "आदेशित" पैरामीटर -
. का उपयोग करके श्रेणीबद्ध के रूप में आदेश दिया गया व्यवहार करेंcatIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])
श्रेणीबद्ध सूचकांक प्रदर्शित करें -
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')