अनुरोधित लेबल के लिए पूर्णांक स्थान प्राप्त करने के लिए और यदि कोई सटीक मिलान नहीं है तो पिछले अनुक्रमणिका मान को खोजने के लिए, index.get_loc() का उपयोग करें . पैरामीटर सेट करें विधि मान के लिए फ़िल करें ।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
यदि कोई सटीक मिलान नहीं है तो पिछली अनुक्रमणिका का स्थान प्राप्त करें। मान "ffill" को get_loc() -
. के "विधि" पैरामीटर का उपयोग करके सेट किया जाता हैprint("\nGet the location of the previous index if no exact match...\n", index.get_loc(45, method="ffill"))
उदाहरण
निम्नलिखित कोड है -
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 previous index if no exact match # The value is set "ffill" using the "method" parameter of the get_loc() print("\nGet the location of the previous index if no exact match...\n", index.get_loc(45, method="ffill"))
आउटपुट
यह निम्नलिखित आउटपुट देगा -
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 previous index if no exact match... 3