দুটি ক্যাটেগরিক্যাল ইনডেক্স বস্তুতে একই উপাদান রয়েছে কিনা তা নির্ধারণ করতে, সমান() ব্যবহার করুন পদ্ধতি প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
"বিভাগ" পরামিতি ব্যবহার করে শ্রেণীগত জন্য বিভাগ সেট করুন। "অর্ডার করা" পরামিতি ব্যবহার করে নির্দেশিত হিসাবে শ্রেণীগত আচরণ করুন। দুটি ক্যাটেগরিক্যাল ইনডেক্স অবজেক্ট তৈরি করুন -
catIndex1 = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]) catIndex2 = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"])
সমতা −
-এর জন্য উভয় শ্রেণির সূচক বস্তু পরীক্ষা করুনprint("\nCheck both the CategoricalIndex objects for equality...\n",catIndex1.equals(catIndex2))
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Set the categories for the categorical using the "categories" parameter # Treat the categorical as ordered using the "ordered" parameter # Create two CategoricalIndex objects catIndex1 = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]) catIndex2 = pd.CategoricalIndex(["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]) # Display the CategoricalIndex objects print("CategoricalIndex1...\n",catIndex1) print("\nCategoricalIndex2...\n",catIndex2) # Check both the CategoricalIndex objects for equality print("\nCheck both the CategoricalIndex objects for equality...\n",catIndex1.equals(catIndex2))
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেCategoricalIndex1... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category') CategoricalIndex2... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category') Check both the CategoricalIndex objects for equality... True