From cbf6e420854e6bfba9d4b8896f879dd24997223f Mon Sep 17 00:00:00 2001 From: Swati Sneha Date: Mon, 4 Nov 2024 23:42:37 +0530 Subject: [PATCH] DOC: added see also for series.dt.round in series.round (#60187) added see also for series.dt.round in series.round --- pandas/core/series.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/core/series.py b/pandas/core/series.py index fe2bb0b5aa5c3..d83d9715878f8 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -2482,6 +2482,7 @@ def round(self, decimals: int = 0, *args, **kwargs) -> Series: -------- numpy.around : Round values of an np.array. DataFrame.round : Round values of a DataFrame. + Series.dt.round : Round values of data to the specified freq. Notes -----