CategoricalIndex-এর শ্রেণীবিভাগকে ক্রমবিহীন অবস্থায় সেট করতে, as_unordered() ব্যবহার করুন পান্ডাসে পদ্ধতি।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
"বিভাগ" পরামিতি ব্যবহার করে শ্রেণীগত জন্য বিভাগ সেট করুন। "অর্ডার করা" পরামিতি ব্যবহার করে শ্রেণীগতকে মান সত্য −
হিসাবে বিবেচনা করুনcatIndex = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])
বিভাগগুলিকে ক্রমবিহীন −
সেট করুন৷print("\nCategoricalIndex unordered...\n", catIndex.as_unordered())
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd
# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter with value True
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("\nDisplaying Categories from CategoricalIndex...\n",catIndex.categories)
# Set the categories to be unordered
print("\nCategoricalIndex unordered...\n", catIndex.as_unordered()) আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেCategoricalIndex... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category') Displaying Categories from CategoricalIndex... Index(['p', 'q', 'r', 's'], dtype='object') CategoricalIndex unordered... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=False, dtype='category')