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


Python pyspark Series.round用法及代码示例


本文简要介绍 pyspark.pandas.Series.round 的用法。

用法:

Series.round(decimals: int = 0) → pyspark.pandas.series.Series

将系列中的每个值四舍五入到给定的小数位数。

参数

decimalsint

要四舍五入的小数位数(默认值:0)。如果小数为负数,它指定小数点左侧的位数。

返回

系列对象

例子

>>> df = ps.Series([0.028208, 0.038683, 0.877076], name='x')
>>> df
0    0.028208
1    0.038683
2    0.877076
Name: x, dtype: float64
>>> df.round(2)
0    0.03
1    0.04
2    0.88
Name: x, dtype: float64

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.round。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。