当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。