अगर इंडेक्स मोनोटोनिक बढ़ रहा है (केवल बराबर या बढ़ता हुआ) मान लौटाने के लिए, index.is_monotonic_increasing का उपयोग करें संपत्ति।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
अनुक्रमणिका बनाना -
index = pd.Index([10, 20, 20, 30, 40])
सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
जांचें कि क्या सूचकांक मोनोटोनिक बढ़ रहा है -
print("\nIs the Pandas index monotonic increasing?\n",index.is_monotonic_increasing)
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating the index index = pd.Index([10, 20, 20, 30, 40]) # Display the index print("Pandas Index...\n",index) # Return an array representing the data in the Index print("\nArray...\n",index.values) # Check if the index monotonic increasing print("\nIs the Pandas index monotonic increasing?\n",index.is_monotonic_increasing)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
Pandas Index... Int64Index([10, 20, 20, 30, 40], dtype='int64') Array... [10 20 20 30 40] Is the Pandas index monotonic increasing? True