用法:
Series.round(decimals=0)
将系列中的每个值四舍五入到给定的小数位数。
此文档字符串是从 pandas.core.series.Series.round 复制而来的。
可能存在与 Dask 版本的一些不一致之处。
- decimals:整数,默认 0
要四舍五入的小数位数。如果小数为负数,它指定小数点左侧的位数。
- *args, **kwargs:
其他参数和关键字无效,但可能会被接受以与 NumPy 兼容。
- Series
系列的四舍五入值。
参数:
返回:
例子:
>>> s = pd.Series([0.1, 1.3, 2.7]) >>> s.round() 0 0.0 1 1.0 2 3.0 dtype: float64
相关用法
- Python dask.dataframe.Series.repartition用法及代码示例
- Python dask.dataframe.Series.replace用法及代码示例
- Python dask.dataframe.Series.radd用法及代码示例
- Python dask.dataframe.Series.rdiv用法及代码示例
- Python dask.dataframe.Series.random_split用法及代码示例
- Python dask.dataframe.Series.resample用法及代码示例
- Python dask.dataframe.Series.reduction用法及代码示例
- Python dask.dataframe.Series.apply用法及代码示例
- Python dask.dataframe.Series.clip用法及代码示例
- Python dask.dataframe.Series.prod用法及代码示例
- Python dask.dataframe.Series.fillna用法及代码示例
- Python dask.dataframe.Series.to_frame用法及代码示例
- Python dask.dataframe.Series.sum用法及代码示例
- Python dask.dataframe.Series.dropna用法及代码示例
- Python dask.dataframe.Series.gt用法及代码示例
- Python dask.dataframe.Series.ge用法及代码示例
- Python dask.dataframe.Series.mod用法及代码示例
- Python dask.dataframe.Series.count用法及代码示例
- Python dask.dataframe.Series.append用法及代码示例
- Python dask.dataframe.Series.add用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.dataframe.Series.round。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。