pandas.Series.round #

系列。round (小数= 0 , * args , ** kwargs ) [来源] #

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

参数
小数int,默认 0

要舍入的小数位数。如果小数为负数,则指定小数点左侧的位数。

*args,**kwargs

其他参数和关键字没有效果,但可能会被接受以与 NumPy 兼容。

返回
系列

系列的四舍五入值。

也可以看看

numpy.around

np.array 的舍入值。

DataFrame.round

对 DataFrame 的值进行舍入。

例子

>>> s = pd.Series([0.1, 1.3, 2.7])
>>> s.round()
0    0.0
1    1.0
2    3.0
dtype: float64