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

पायथन पांडा - एक विशिष्ट स्थान पर एक नया सूचकांक मान डालें

किसी विशिष्ट स्थान पर एक नया अनुक्रमणिका मान सम्मिलित करने के लिए, index.insert() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -

import pandas as pd

पांडा इंडेक्स बनाना -

index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])

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

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

सम्मिलित () विधि का उपयोग करके किसी विशिष्ट स्थान पर एक नया मान डालें। इन्सर्ट () में पहला पैरामीटर वह स्थान है जहाँ नया इंडेक्स वैल्यू रखा गया है। यहां 2 का मतलब है कि नया इंडेक्स वैल्यू इंडेक्स 2 यानी स्थिति 3 पर डाला जाता है। दूसरा पैरामीटर डाला जाने वाला नया इंडेक्स वैल्यू है।

print("\nAfter inserting a new index value...\n", index.insert(2, 'Suburban'))

उदाहरण

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

import pandas as pd

# Creating the Pandas index
index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])

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

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Insert a new value at a specific position using the insert() method
# The first parameter in the insert() is the location where the new index value is placed.
# The 2 here means the new index value gets inserted at index 2 i.e. position 3
# The second parameter is the new index value to be inserted.
print("\nAfter inserting a new index value...\n", index.insert(2, 'Suburban'))

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Pandas Index...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck'], dtype='object')

The dtype object...
object

After inserting a new index value...
Index(['Car', 'Bike', 'Suburban', 'Airplane', 'Ship', 'Truck'], dtype='object')

  1. पायथन - पंडों के डेटाफ्रेम में निरंतर मूल्य के साथ एक नया कॉलम जोड़ें

    स्थिर मान के साथ नया कॉलम जोड़ने के लिए, वर्गाकार ब्रैकेट यानी इंडेक्स ऑपरेटर का उपयोग करें और उस मान को सेट करें। सबसे पहले, आवश्यक पुस्तकालय आयात करें - pd के रूप में पांडा आयात करें 4 कॉलम के साथ डेटाफ़्रेम बनाना - dataFrame =pd.DataFrame({Car:[Bentley, Lexus, BBMW, Mustang, Mercedes, Jaguar],C

  1. पायथन - पांडा के साथ एक विशिष्ट मूल्य के लिए डेटाफ़्रेम खोजें

    हम एक विशिष्ट मूल्य के लिए DataFrame खोज सकते हैं। आवश्यक मान प्राप्त करने और संपूर्ण पंक्ति प्रदर्शित करने के लिए iloc का उपयोग करें। सबसे पहले, आवश्यक पुस्तकालय आयात करें - import pandas as pd 4 कॉलम के साथ डेटाफ़्रेम बनाएं - dataFrame = pd.DataFrame({"Car": ['BMW', 'Lexus&#

  1. पायथन - सूची में सूचकांक मूल्य दोहराव

    जब किसी सूची में दोहराए गए सूचकांक मूल्य को खोजने की आवश्यकता होती है, तो इसे सूची समझ और गणना का उपयोग करके पुनरावृत्त किया जाता है। उदाहरण नीचे उसी का एक प्रदर्शन है my_list = [4, 0, 3, 1] print("The list is :") print(my_list) my_result = [element for sub in ([index] * element for ind