pandas 1.4.2

ParametersReturnsBackRef
round(self, decimals=0, *args, **kwargs) -> 'Series'

Parameters

decimals : int, default 0

Number of decimal places to round to. If decimals is negative, it specifies the number of positions to the left of the decimal point.

*args, **kwargs :

Additional arguments and keywords have no effect but might be accepted for compatibility with NumPy.

Returns

Series

Rounded values of the Series.

Round each value in a Series to the given number of decimals.

See Also

DataFrame.round

Round values of a DataFrame.

numpy.around

Round values of an np.array.

Examples

This example is valid syntax, but we were not able to check execution
>>> s = pd.Series([0.1, 1.3, 2.7])
... s.round() 0 0.0 1 1.0 2 3.0 dtype: float64
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

pandas.core.frame.DataFrame.round pandas.core.arrays.numeric.NumericArray.round

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/series.py#2409
type: <class 'function'>
Commit: