用法:
Series.round(decimals=0, *args, **kwargs)
将系列中的每个值四舍五入到给定的小数位数。
- 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 pandas.Series.rolling用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.repeat用法及代码示例
- Python pandas.Series.rdiv用法及代码示例
- Python pandas.Series.rsub用法及代码示例
- Python pandas.Series.rdivmod用法及代码示例
- Python pandas.Series.rmul用法及代码示例
- Python pandas.Series.reindex用法及代码示例
- Python pandas.Series.rmod用法及代码示例
- Python pandas.Series.rpow用法及代码示例
- Python pandas.Series.rfloordiv用法及代码示例
- Python pandas.Series.reset_index用法及代码示例
- Python pandas.Series.replace用法及代码示例
- Python pandas.Series.rank用法及代码示例
- Python pandas.Series.resample用法及代码示例
- Python pandas.Series.radd用法及代码示例
- Python pandas.Series.rtruediv用法及代码示例
- Python pandas.Series.rename用法及代码示例
- Python pandas.Series.rename_axis用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.round。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。