अनुक्रमणिका से लेबल वापस करने के लिए या यदि मौजूद नहीं है, तो पिछला वाला, index.asof() का उपयोग करें पंडों में विधि।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
अनुक्रमणिका से लेबल लौटाएं या यदि मौजूद नहीं है, तो पिछला वाला -
print("\nGet the label from the index...\n",index.asof(43))
उदाहरण
निम्नलिखित कोड है -
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 or if not present, the previous one print("\nGet the label from the index...\n",index.asof(43))
आउटपुट
यह निम्नलिखित आउटपुट देगा -
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... 40