बाएं, दाएं फॉर्म के टुपल्स की एक ndarray वापस करने के लिए, to_tuples() का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
इंटरवलएरे बनाएं -
index = pd.arrays.IntervalArray.from_breaks(range(5))
अंतराल प्रदर्शित करें -
print("IntervalIndex...\n",index)
Tuples का 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())का ndarray लौटाएं
आउटपुट
यह निम्नलिखित आउटपुट देगा -
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)]