কম্পিউটার

পাইথন - পান্ডাস সূচকের একটি নতুন দৃশ্য তৈরি করুন


পান্ডাস সূচকের একটি নতুন ভিউ তৈরি করতে, index.view() পদ্ধতি ব্যবহার করুন। প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -

import pandas as pd

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

index = pd.Index([50, 10, 70, 110, 90, 50, 110, 90, 30])

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

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

একটি নতুন ভিউ তৈরি করুন -

res = index.view('uint8')

নতুন ভিউ প্রদর্শন করা হচ্ছে −

print("\nThe new view...\n",res)

এটি একই অন্তর্নিহিত মানগুলি ভাগ করে -

print("\nView for 0th index...\n",res[0])
print("\nView for 1st index...\n",res[1])

উদাহরণ

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

import pandas as pd

# Creating Pandas index
index = pd.Index([50, 10, 70, 110, 90, 50, 110, 90, 30])

# 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 dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Create a new view
res = index.view('uint8')

# displaying the new view
print("\nThe new view...\n",res)

# shares the same underlying values
print("\nView for 0th index...\n",res[0])
print("\nView for 1st index...\n",res[1])

আউটপুট

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

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

Number of elements in the index...
9

The dtype object...
int64

The new view...
[ 50 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 70 0
  0 0 0 0 0 0 110 0 0 0 0 0 0 0 90 0 0 0
  0 0 0 0 50 0 0 0 0 0 0 0 110 0 0 0 0 0
  0 0 90 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0]

View for 0th index...
50

View for 1st index...
0

  1. পাইথন - পান্ডাস সূচকটি অবজেক্ট dটাইপের কিনা তা পরীক্ষা করুন

  2. Python - পান্ডাস সূচক একটি ভাসমান প্রকার কিনা তা পরীক্ষা করুন

  3. Python Pandas - শেষ থেকে প্রথম সূচকে একটি নতুন সূচক মান সন্নিবেশ করান

  4. পাইথন - একটি পান্ডাস ডেটাফ্রেমে একটি নতুন কলাম তৈরি করুন