मास्क के साथ सेट किए गए मानों की एक नई अनुक्रमणिका वापस करने के लिए, index.putmask() का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index([5, 65, 10, 17, 75, 40])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
111 के मान के साथ 3 से कम का मास्क और स्थान अनुक्रमणिका मान -
print("\nMask...\n",index.putmask(index < 30, 111))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index index = pd.Index([5, 65, 10, 17, 75, 40]) # Display the Pandas 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 the dtype of the data print("\nThe dtype object...\n",index.dtype) # mask and place index values less than 3 with a value 111 print("\nMask...\n",index.putmask(index < 30, 111))के मान के साथ 3 से कम मास्क और प्लेस इंडेक्स वैल्यू
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Pandas Index... Int64Index([5, 65, 10, 17, 75, 40], dtype='int64') Number of elements in the index... 6 The dtype object... int64 Mask... Int64Index([111, 65, 111, 111, 75, 40], dtype='int64')