Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - ส่งคืนจำนวนไบต์ในข้อมูลดัชนีพื้นฐาน


ในการส่งคืนจำนวนไบต์ในข้อมูลดัชนีพื้นฐาน ให้ใช้ index.nbytes ทรัพย์สิน

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

การสร้างดัชนี -

index = pd.Index([15, 25, 35, 45, 55])

แสดงดัชนี -

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

รับไบต์ในข้อมูล -

print("\nReturn the bytes...\n",index.nbytes)

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# Creating the index
index = pd.Index([15, 25, 35, 45, 55])

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

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

# Return a tuple of the shape of the underlying data
print("\nA tuple of the shape of underlying data...\n",index.shape)

# get the bytes in the data
print("\nReturn the bytes...\n",index.nbytes)

ผลลัพธ์

สิ่งนี้จะสร้างรหัสต่อไปนี้ -

Pandas Index...
Int64Index([15, 25, 35, 45, 55], dtype='int64')

Array...
[15 25 35 45 55]

A tuple of the shape of underlying data...
(5,)

Return the bytes...
40