সূচকটি একঘেয়ে ক্রমবর্ধমান (শুধুমাত্র সমান বা বৃদ্ধি) মান হলে, index.is_monotonic_increasing ব্যবহার করুন সম্পত্তি।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
সূচক তৈরি করা হচ্ছে -
index = pd.Index([10, 20, 20, 30, 40])
সূচক প্রদর্শন করুন -
print("Pandas Index...\n",index)
সূচক একঘেয়ে বাড়ছে কিনা তা পরীক্ষা করুন −
print("\nIs the Pandas index monotonic increasing?\n",index.is_monotonic_increasing)
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Creating the index index = pd.Index([10, 20, 20, 30, 40]) # Display the index print("Pandas Index...\n",index) # Return an array representing the data in the Index print("\nArray...\n",index.values) # Check if the index monotonic increasing print("\nIs the Pandas index monotonic increasing?\n",index.is_monotonic_increasing)
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
Pandas Index... Int64Index([10, 20, 20, 30, 40], dtype='int64') Array... [10 20 20 30 40] Is the Pandas index monotonic increasing? True