Python Pandas Index.argmin()
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas Index.argmin()函数返回输入索引中存在的最小值的索引。如果我们有一个以上的最小值(即最小值出现了不止一次),那么它将返回最小值第一次出现的索引。
语法: Index.argmin(axis=None)
参数:不接受任何参数
例子#1:使用Index.argmin()函数来查找给定Index中存在的最小值的索引。
# importing pandas as pd
import pandas as pd
# Creating the Index
df = pd.Index([17, 69, 33, 5, 0, 74, 10])
# Print the Index
df
输出 :
让我们找出存在于我们的索引中的最小值的索引。
# function to return the index of the minimum value.
df.argmin()
输出 :
4
正如我们在输出中看到的,索引中的最小值是0,它的索引是4,所以输出是4。
例子2:使用Index.argmin()函数来寻找最小值的索引,当我们有最小值重复多次时。
# importing pandas as pd
import pandas as pd
# Creating the Index
df = pd.Index([17, 69, 33, 5, 10, 74, 10, 5])
# Print the Index
df
输出 :
让我们找出最小值的索引。
# We call the argmin() function to find the index of minimum value.
df.argmin()
输出 :
3