ডুপ্লিকেট সূচক মান নির্দেশ করতে, index.duplicated() পদ্ধতি ব্যবহার করুন।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
কিছু সদৃশ −
দিয়ে সূচক তৈরি করা হচ্ছেindex = pd.Index(['Car','Bike','Airplane','Ship','Airplane'])
সূচক প্রদর্শন করুন -
print("Pandas Index with duplicates...\n",index)
ডুপ্লিকেট সূচক মানকে সত্য হিসাবে নির্দেশ করুন, বাকিটি মিথ্যা। ডিফল্টরূপে, এটি ডুপ্লিকেট মানের প্রথম ঘটনাটিকে অচিহ্নিত রাখে −
print("\nIndicating duplicate values...\n", index.duplicated())
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Creating the index with some duplicates index = pd.Index(['Car','Bike','Airplane','Ship','Airplane']) # Display the index print("Pandas Index with duplicates...\n",index) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # get the dimensions of the data print("\nGet the dimensions...\n",index.ndim) # Indicate duplicate index values as True, rest False # By default it keeps the first occurrence of the duplicate value unmarked print("\nIndicating duplicate values...\n", index.duplicated())
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
Pandas Index with duplicates... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Airplane'], dtype='object') The dtype object... object Get the dimensions... 1 Indicating duplicate values... [False False False False True]