當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas Index.min()用法及代碼示例


Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。

Pandas Index.min()函數返回Index的最小值。該函數適用於數字對象和字符串類型的對象。對於字符串類型的對象,它將按字典順序返回具有最小值的字符串。

用法: Index.min()

參數:不帶任何參數。

返回:標量:最小值。

範例1:采用Index.min()函數查找給定索引中的最小元素。

# importing pandas as pd 
import pandas as pd 
  
# Creating the Index 
idx = pd.Index(['Labrador', 'Beagle', 'Mastiff', 'Lhasa', 'Husky', 'Beagle']) 
  
# Print the Index 
idx

輸出:

現在,我們在給定的索引中找到最小值。

# return min value. 
idx.min()

輸出:

正如我們在輸出中看到的那樣,該函數返回了“ Beagle”,該索引在索引中存在的值中詞典順序最小。

範例2:采用Index.min()函數在索引中找到最小值。

# importing pandas as pd 
import pandas as pd 
  
# Creating the Index 
idx = pd.Index([17, 69, 33, 5, 0, 74, 0]) 
  
# Print the Datetime Index 
idx

輸出:

現在,我們將在索引的標簽中找到最小值。

# the function will return the minimum 
#  value present in the Index 
idx.min()

輸出:

正如我們在輸出中看到的那樣,該函數返回了0,這是Index的標簽中的最小值。



相關用法


注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Index.min()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。