Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन पांडस इंटरवलइंडेक्स - फॉर्म के टुपल्स का एक ndarray लौटाएं (बाएं, दाएं)

बाएं, दाएं फॉर्म के टुपल्स की एक 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)]

  1. पायथन पांडा - इंटरवलएरे में प्रत्येक अंतराल के सही समापन बिंदु को एक इंडेक्स के रूप में लौटाएं

    इंडेक्स के रूप में इंटरवलएरे में प्रत्येक अंतराल के सही समापन बिंदुओं को वापस करने के लिए, सरणी का उपयोग करें।दाएं संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd दो इंटरवल ऑब्जेक्ट बनाएं - interval1 = pd.Interval(10, 25) interval2 = pd.Interval(15, 70) अंतराल प्रदर्शित

  1. अजगर पंडों - इंटरवलएरे में प्रत्येक अंतराल के बाएं समापन बिंदु को एक सूचकांक के रूप में लौटाएं

    IntervalArray में प्रत्येक अंतराल के बाएँ समापन बिंदुओं को एक अनुक्रमणिका के रूप में वापस करने के लिए, array.left का उपयोग करें संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd दो इंटरवल ऑब्जेक्ट बनाएं - nterval1 = pd.Interval(10, 25) interval2 = pd.Interval(15, 70) अंतरा

  1. पायथन पांडा - डेटाफ्रेम के सूचकांक को बहु-सूचकांक के रूप में प्रदर्शित करें

    डेटाफ़्रेम के इंडेक्स को मल्टीइंडेक्स के रूप में प्रदर्शित करने के लिए, डेटाफ़्रेम.इंडेक्स () का उपयोग करें। सबसे पहले, हम सूचियों का एक शब्दकोश बनाते हैं - # dictionary of lists d = {'Car': ['BMW', 'Lexus', 'Audi', 'Mercedes', 'Jaguar', 'Bentley&#