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

पायथन - कई इंडेक्स तत्वों को हटाने के साथ नया पंडों का सूचकांक बनाएं

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

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

import pandas as pd

अनुक्रमणिका बनाना -

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

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

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

तीसरे स्थान पर एकाधिक अनुक्रमणिका हटाना यानी अनुक्रमणिका 2 और 5वीं स्थिति यानी अनुक्रमणिका 4 -

print("\nRemaining Index after deleting multiple index elements...\n", index.delete([2, 4]))

उदाहरण

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

import pandas as pd

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

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

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

# 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)

# get the dimensions of the data
print("\nReturn the dimensions...\n",index.ndim)

# deleting multiple indexes at 3rd position i.e. index 2 and 5th position i.e. index 4
print("\nRemaining Index after deleting multiple index elements...\n", index.delete([2, 4]))

आउटपुट

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

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

Number of elements in the index...
7

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

Return the bytes...
56

Return the dimensions...
1

Remaining Index after deleting multiple index elements...
Int64Index([15, 25, 45, 75, 95], dtype='int64')

  1. पायथन पांडा - डेटाफ़्रेम में सभी NaN तत्वों को 0s . से बदलें

    NaN मानों को बदलने के लिए, fillna() विधि का उपयोग करें। मान लें कि Microsoft Excel में कुछ NaN मानों के साथ खोली गई हमारी CSV फ़ाइल निम्नलिखित है - सबसे पहले, आवश्यक पुस्तकालय आयात करें - import pandas as pd CSV फ़ाइल से डेटा को पंडों के डेटाफ़्रेम में लोड करें - dataFrame = pd.read_csv("C:

  1. पायथन - समान सूचकांक वाले तत्व

    जब समान अनुक्रमणिका वाले तत्वों को प्रदर्शित करने की आवश्यकता होती है, तो एक साधारण पुनरावृत्ति और गणना विशेषता का उपयोग किया जाता है। नीचे उसी का एक प्रदर्शन है - उदाहरण my_list = [33, 1, 2, 45, 41, 13, 6, 9] print("The list is :") print(my_list) my_result = [] for index, element in en

  1. पायथन में सूचकांक के आधार पर एक बहु-सूची के साथ सूची तत्व जोड़ें

    सूचियों को नेस्टेड किया जा सकता है। जिसका अर्थ है कि हमारे पास बड़ी सूची के अंदर तत्वों के रूप में छोटी सूचियाँ हैं। इस लेख में हम नेस्टेड सूची के तत्वों में एक साधारण सूची के तत्वों को जोड़ने की चुनौती का समाधान करते हैं। यदि सूचियों की लंबाई भिन्न होती है तो छोटी सूची की लंबाई परिणामी सूची की अधिक