From a31cb7cd415135d50232242ed8873ab2dac6558e Mon Sep 17 00:00:00 2001 From: Swati Sneha Date: Mon, 4 Nov 2024 23:13:51 +0530 Subject: [PATCH] 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 -----