কম্পিউটার

Python Pandas - সূচী থেকে লেবেল ফেরত দিন বা উপস্থিত না থাকলে, আগেরটি


সূচী থেকে লেবেল ফেরত দিতে বা উপস্থিত না থাকলে, আগেরটি, index.asof() ব্যবহার করুন পান্ডাসে পদ্ধতি।

প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -

import pandas as pd

পান্ডাস সূচক তৈরি করা হচ্ছে -

index = pd.Index([10, 20, 30, 40, 50, 60, 70])

পান্ডাস সূচক প্রদর্শন করুন -

print("Pandas Index...\n",index)

সূচী থেকে লেবেল ফেরত দিন বা উপস্থিত না থাকলে, আগেরটি −

print("\nGet the label from the index...\n",index.asof(43))

উদাহরণ

নিম্নলিখিত কোড -

import pandas as pd

# Creating Pandas index
index = pd.Index([10, 20, 30, 40, 50, 60, 70])

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the label from the index or if not present, the previous one
print("\nGet the label from the index...\n",index.asof(43))

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Pandas Index...
Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64')

Number of elements in the index...
7

Get the label from the index...
40

  1. Python Pandas - Timedelta অবজেক্ট থেকে মাইক্রোসেকেন্ড রিটার্ন করুন

  2. Python - পান্ডাস সূচকের সর্বোচ্চ মান ফেরত দিন

  3. পাইথন - পান্ডাস সূচকের সর্বনিম্ন মান ফেরত দিন

  4. যদি নির্দিষ্ট সূচকটি পাইথন পান্ডাস সিরিজে উপস্থিত না থাকে তবে কী হবে?