本文简要介绍
pyspark.pandas.Series.sum
的用法。用法:
Series.sum(axis: Union[int, str, None] = None, numeric_only: bool = None, min_count: int = 0) → Union[int, float, bool, str, bytes, decimal.Decimal, datetime.date, datetime.datetime, None, pyspark.pandas.series.Series]
返回值的总和。
- axis:{索引 (0), 列 (1)}
要应用的函数的轴。
- numeric_only:布尔值,默认无
仅包括 float、int、boolean 列。不支持 False。这个参数主要是为了pandas的兼容性。
- min_count:整数,默认 0
- 执行操作所需的有效值数。如果小于
min_count
存在非 NA 值,结果将为 NA。
- sum:Series 的标量和 DataFrame 的 Series。
参数:
返回:
例子:
>>> df = ps.DataFrame({'a': [1, 2, 3, np.nan], 'b': [0.1, np.nan, 0.3, np.nan]}, ... columns=['a', 'b'])
在数据帧上:
>>> df.sum() a 6.0 b 0.4 dtype: float64
>>> df.sum(axis=1) 0 1.1 1 2.0 2 3.3 3 0.0 dtype: float64
>>> df.sum(min_count=3) a 6.0 b NaN dtype: float64
>>> df.sum(axis=1, min_count=1) 0 1.1 1 2.0 2 3.3 3 NaN dtype: float64
在一个系列上:
>>> df['a'].sum() 6.0
>>> df['a'].sum(min_count=3) 6.0 >>> df['b'].sum(min_count=3) nan
相关用法
- Python pyspark Series.sub用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.sem用法及代码示例
- Python pyspark Series.sort_values用法及代码示例
- Python pyspark Series.str.lstrip用法及代码示例
- Python pyspark Series.squeeze用法及代码示例
- Python pyspark Series.str.len用法及代码示例
- Python pyspark Series.str.slice用法及代码示例
- Python pyspark Series.str.isnumeric用法及代码示例
- Python pyspark Series.str.endswith用法及代码示例
- Python pyspark Series.str.swapcase用法及代码示例
- Python pyspark Series.str.isdecimal用法及代码示例
- Python pyspark Series.str.rstrip用法及代码示例
- Python pyspark Series.str.istitle用法及代码示例
- Python pyspark Series.skew用法及代码示例
- Python pyspark Series.str.match用法及代码示例
- Python pyspark Series.str.rindex用法及代码示例
- Python pyspark Series.swaplevel用法及代码示例
- Python pyspark Series.str.rsplit用法及代码示例
- Python pyspark Series.std用法及代码示例
- Python pyspark Series.str.strip用法及代码示例
- Python pyspark Series.str.ljust用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.sum。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。