সূচকের স্থানান্তর ফেরাতে, 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')