हटाए गए लेबलों की पारित सूची के साथ नई अनुक्रमणिका बनाने के लिए, index.drop() . का उपयोग करें तरीका। इसमें लेबल की सूची पास करें।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
अनुक्रमणिका बनाना -
index = pd.Index(['Car','Bike','Truck','Ship','Airplane'])
सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
हटाए जाने वाले लेबल वाली सूची पास की जाती है -
print("\nUpdated index after deleting labels...\n",index.drop(['Bike', 'Ship']))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating the index index = pd.Index(['Car','Bike','Truck','Ship','Airplane']) # Display the index print("Pandas Index...\n",index) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape) # a list containing labels to be dropped are passed print("\nUpdated index after deleting labels...\n",index.drop(['Bike', 'Ship']))
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
Pandas Index... Index(['Car', 'Bike', 'Truck', 'Ship', 'Airplane'], dtype='object') The dtype object... object A tuple of the shape of underlying data... (5,) Updated index after deleting labels... Index(['Car', 'Truck', 'Airplane'], dtype='object')