用法:
Series.prod(axis=None, skipna=True, level=None, numeric_only=None, min_count=0, **kwargs)
返回请求轴上的值的乘积。
- axis:{索引 (0)}
要应用的函数的轴。
- skipna:布尔值,默认为真
计算结果时排除 NA/null 值。
- level:int 或级别名称,默认无
如果轴是 MultiIndex(分层),则沿特定级别计数,折叠成标量。
- numeric_only:布尔值,默认无
仅包括 float、int、boolean 列。如果没有,将尝试使用所有内容,然后仅使用数字数据。未针对系列实施。
- min_count:整数,默认 0
执行操作所需的有效值数。如果存在的非 NA 值少于
min_count
,则结果将为 NA。- **kwargs:
要传递给函数的附加关键字参数。
- 标量或系列(如果指定级别)
参数:
返回:
例子:
默认情况下,空或all-NA系列的乘积是
1
>>> pd.Series([], dtype="float64").prod() 1.0
这可以通过
min_count
参数来控制>>> pd.Series([], dtype="float64").prod(min_count=1) nan
由于
skipna
参数,min_count
处理 all-NA 和空系列相同。>>> pd.Series([np.nan]).prod() 1.0
>>> pd.Series([np.nan]).prod(min_count=1) nan
相关用法
- Python pandas.Series.product用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.plot.hist用法及代码示例
- Python pandas.Series.plot.box用法及代码示例
- Python pandas.Series.pop用法及代码示例
- Python pandas.Series.pow用法及代码示例
- Python pandas.Series.plot.kde用法及代码示例
- Python pandas.Series.pipe用法及代码示例
- Python pandas.Series.plot.pie用法及代码示例
- Python pandas.Series.plot.bar用法及代码示例
- Python pandas.Series.pct_change用法及代码示例
- Python pandas.Series.plot.area用法及代码示例
- Python pandas.Series.plot.barh用法及代码示例
- Python pandas.Series.plot.density用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.prod。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。