用法:
Series.min(axis=NoDefault.no_default, skipna=True, level=None, numeric_only=None, **kwargs)
返回请求轴上的最小值。
如果您想要最小值的索引,请使用
idxmin
。这等效于numpy.ndarray
方法argmin
。- axis:{索引 (0)}
要应用的函数的轴。
- skipna:布尔值,默认为真
计算结果时排除 NA/null 值。
- level:int 或级别名称,默认无
如果轴是 MultiIndex(分层),则沿特定级别计数,折叠成标量。
- numeric_only:布尔值,默认无
仅包括 float、int、boolean 列。如果没有,将尝试使用所有内容,然后仅使用数字数据。未针对系列实施。
- **kwargs:
要传递给函数的附加关键字参数。
- 标量或系列(如果指定级别)
参数:
返回:
例子:
>>> idx = pd.MultiIndex.from_arrays([ ... ['warm', 'warm', 'cold', 'cold'], ... ['dog', 'falcon', 'fish', 'spider']], ... names=['blooded', 'animal']) >>> s = pd.Series([4, 2, 0, 8], name='legs', index=idx) >>> s blooded animal warm dog 4 falcon 2 cold fish 0 spider 8 Name:legs, dtype:int64
>>> s.min() 0
相关用法
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.mask用法及代码示例
- Python pandas.Series.memory_usage用法及代码示例
- Python pandas.Series.multiply用法及代码示例
- Python pandas.Series.mod用法及代码示例
- Python pandas.Series.mul用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.min。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。