अनुक्रमणिका से लेबल वापस करने के लिए यदि अनुक्रमणिका के सभी लेबल पास किए गए लेबल के बाद के हैं, तो index.asof() का उपयोग करें पंडों में विधि।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
अनुक्रमणिका से लेबल लौटाएं। NaN तब लौटाता है जब अनुक्रमणिका के सभी लेबल पास किए गए लेबल के बाद के होते हैं -
print("\nGet the label from the index...\n",index.asof(6))
उदाहरण
निम्नलिखित कोड है -
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) # Return the label from the index # Returns NaN when if all of the labels in the index are later than the passed label print("\nGet the label from the index...\n",index.asof(6))
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Pandas Index... Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64') Number of elements in the index... 7 Get the label from the index... Nan