কম্পিউটার

Python Pandas - সূচকের স্থানান্তর ফিরিয়ে দিন


সূচকের স্থানান্তর ফেরাতে, index.T ব্যবহার করুন সম্পত্তি।

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

import pandas as pd

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

index = pd.Index(['Car','Bike','Truck','Ship','Airplane'])

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

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

সূচকের স্থানান্তর প্রদর্শন করুন −

print("\nTranspose of the Pandas Index which is by definition self...\n",index.T)

উদাহরণ

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

import pandas as pd

# Creating the index
index = pd.Index(['Car','Bike','Truck','Ship','Airplane'])

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

# Return an array representing the data in the Index
print("\nArray...\n",index.values)

# Display the transpose of the index
print("\nTranspose of the Pandas Index which is by definition self...\n",index.T)

আউটপুট

এটি নিম্নলিখিত কোড তৈরি করবে -

Pandas Index...
Index(['Car', 'Bike', 'Truck', 'Ship', 'Airplane'], dtype='object')

Array...
['Car' 'Bike' 'Truck' 'Ship' 'Airplane']

Transpose of the Pandas Index which is by definition self...
Index(['Car', 'Bike', 'Truck', 'Ship', 'Airplane'], dtype='object')

  1. Python Pandas - সূচক দ্বারা নির্বাচিত মানগুলির একটি নতুন সূচক ফেরত দিন

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

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

  4. Python Pandas - একটি সূচী হিসাবে IntervalArray-এ প্রতিটি ব্যবধানের মধ্যবিন্দু ফেরত দিন