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

पायथन पांडा - रिटर्न करें कि क्या इंडेक्स में कोई तत्व सही है

यह लौटने के लिए कि क्या अनुक्रमणिका के सभी तत्व सत्य हैं, index.any() . का उपयोग करें पंडों में विधि।

सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -

import pandas as pd

कुछ सही (गैर-शून्य) और गलत (शून्य) तत्वों के साथ अनुक्रमणिका बनाना -

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

सूचकांक प्रदर्शित करें -

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

यदि अनुक्रमणिका में कोई तत्व सत्य है, तो सही लौटें:-

print("\nCheck whether any element in the index is True...\n",index.any())

उदाहरण

निम्नलिखित कोड है -

import pandas as pd

# Creating the index with some True (non-zero) and False (zero) elements
index = pd.Index([15, 25, 0, 0, 55])

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

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

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return True if any element in the index is True
print("\nCheck whether any element in the index is True...\n",index.any())

आउटपुट

यह निम्नलिखित कोड उत्पन्न करेगा -

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

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

Number of elements in the index...
5

Check whether any element in the index is True...
True

  1. पायथन - पंडों के सूचकांक का अधिकतम मूल्य लौटाएं

    पांडा सूचकांक का अधिकतम मूल्य वापस करने के लिए, index.max() . का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना index = pd.Index([10, 20, 70, 40, 90, 50, 25, 30]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Index...\n",index) अधि

  1. पायथन - पंडों के सूचकांक का न्यूनतम मूल्य लौटाएं

    पांडा इंडेक्स का न्यूनतम मान वापस करने के लिए, index.min() . का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index([10.5, 20.4, 40.5, 25.6, 5.7, 6.8, 30.8, 50.2]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Index...\n&qu

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

    इंडेक्स के रूप में इंटरवलएरे में प्रत्येक अंतराल के मध्य बिंदु को वापस करने के लिए, array.mid का उपयोग करें संपत्ति। सबसे पहले, सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd दो इंटरवल ऑब्जेक्ट बनाएं। दोनों मान के साथ बंद पैरामीटर का उपयोग करके सेट किए गए बंद अंतराल - interval1 =