Để trả về nếu chỉ mục là giá trị đơn điệu giảm (chỉ bằng hoặc giảm), hãy sử dụng index.is_monotonic_decreasing tài sản.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Tạo chỉ mục -
index = pd.Index([50, 40, 30, 30, 30])
Hiển thị chỉ mục -
print("Pandas Index...\n",index)
Kiểm tra xem chỉ số đơn điệu đang giảm -
print("\nIs the Pandas index monotonic decreasing?\n",index.is_monotonic_decreasing)
Ví dụ
Sau đây là mã -
import pandas as pd # Creating the index index = pd.Index([50, 40, 30, 30, 30]) # 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 decreasing print("\nIs the Pandas index monotonic decreasing?\n",index.is_monotonic_decreasing)
Đầu ra
Điều này sẽ tạo ra mã sau -
Pandas Index... Int64Index([50, 40, 30, 30, 30], dtype='int64') Array... [50 40 30 30 30] Is the Pandas index monotonic decreasing? True