किसी विशिष्ट स्थान पर एक नया अनुक्रमणिका मान सम्मिलित करने के लिए, 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')