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

Python Pandas IntervalIndex - ส่งคืน ndarray ของ tuples ของแบบฟอร์ม (ซ้าย, ขวา)


ในการส่งคืน ndarray ของ tuples ของแบบฟอร์ม ซ้าย, ขวา ให้ใช้ to_tuples() วิธีการในแพนด้า ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

สร้าง IntervalArray -

index = pd.arrays.IntervalArray.from_breaks(range(5))

แสดงช่วงเวลา -

print("IntervalIndex...\n",index)

กลับ ndarray ของทูเปิลส์ -

print("\nThe ndarray of Tuples...\n",index.to_tuples())

ตัวอย่าง

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

import pandas as pd

# Create IntervalArray
index = pd.arrays.IntervalArray.from_breaks(range(5))

# Display the interval
print("IntervalIndex...\n",index)

# Display the interval length
print("\nIntervalIndex length...\n",index.length)

# Return the ndarray of Tuples
print("\nThe ndarray of Tuples...\n",index.to_tuples())

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

IntervalIndex...
<IntervalArray>
[(0, 1], (1, 2], (2, 3], (3, 4]]
Length: 4, dtype: interval[int64, right]

IntervalIndex length...
Int64Index([1, 1, 1, 1], dtype='int64')

The ndarray of Tuples...
[(0, 1) (1, 2) (2, 3) (3, 4)]