Skip to content
Prev Previous commit
Next Next commit
Improve docstring round method
  • Loading branch information
stijnvanhoey committed Feb 1, 2019
commit 44c5c307c22c935f0ee73266b8e5a75e8a4c6ccb
6 changes: 3 additions & 3 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -6927,12 +6927,12 @@ def round(self, decimals=0, *args, **kwargs):
-------
DataFrame :
A DataFrame with the affected columns rounded to the specified
number of decimal places
number of decimal places.

See Also
--------
numpy.around
Series.round
numpy.around : Round a numpy array to the given number of decimals.
Series.round : Round a Series to the given number of decimals.

Examples
--------
Expand Down