अनुरोधित लेबल के लिए पूर्णांक स्थान प्राप्त करने के लिए और यदि कोई सटीक मिलान नहीं है तो निकटतम अनुक्रमणिका मान प्राप्त करने के लिए, index.get_loc() का उपयोग करें . विधि सेट करें पैरामीटर मान निकटतम ।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
यदि कोई सटीक मिलान नहीं है, तो निकटतम अनुक्रमणिका मान का स्थान प्राप्त करें। मान get_loc() के "विधि" पैरामीटर का उपयोग करके "निकटतम" सेट किया गया है।
print("\nGet the location of the nearest index if no exact match...\n", index.get_loc(58, method="nearest"))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index index = pd.Index([10, 20, 30, 40, 50, 60, 70]) # 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) # get integer location from the given index print("\nDisplay integer location from given index...\n",index.get_loc(20)) print("\nDisplay integer location from given index...\n",index.get_loc(50)) # Get the location of the nearest index value if no exact match # The value is set "nearest" using the "method" parameter of the get_loc() print("\nGet the location of the nearest index if no exact match...\n", index.get_loc(58, method="nearest"))
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Pandas Index... Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64') Number of elements in the index... 7 Display integer location from given index... 1 Display integer location from given index... 4 Get the location of the nearest index if no exact match... 5