@@ -271,6 +271,9 @@ def rolling_count(arg, window, **kwargs):
271
271
The `freq` keyword is used to conform time series data to a specified
272
272
frequency by resampling the data. This is done with the default parameters
273
273
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
274
+
275
+ To know more about the frequency strings (offset aliases), please visit this
276
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
274
277
"""
275
278
return ensure_compat ('rolling' , 'count' , arg , window = window , ** kwargs )
276
279
@@ -521,6 +524,9 @@ def rolling_quantile(arg, window, quantile, min_periods=None, freq=None,
521
524
The `freq` keyword is used to conform time series data to a specified
522
525
frequency by resampling the data. This is done with the default parameters
523
526
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
527
+
528
+ To know more about the frequency strings (offset aliases), please visit this
529
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
524
530
"""
525
531
return ensure_compat ('rolling' ,
526
532
'quantile' ,
@@ -570,6 +576,9 @@ def rolling_apply(arg, window, func, min_periods=None, freq=None,
570
576
The `freq` keyword is used to conform time series data to a specified
571
577
frequency by resampling the data. This is done with the default parameters
572
578
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
579
+
580
+ To know more about the frequency strings (offset aliases), please visit this
581
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
573
582
"""
574
583
return ensure_compat ('rolling' ,
575
584
'apply' ,
@@ -642,6 +651,9 @@ def rolling_window(arg, window=None, win_type=None, min_periods=None,
642
651
The `freq` keyword is used to conform time series data to a specified
643
652
frequency by resampling the data. This is done with the default parameters
644
653
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
654
+
655
+ To know more about the frequency strings (offset aliases), please visit this
656
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
645
657
"""
646
658
func = 'mean' if mean else 'sum'
647
659
return ensure_compat ('rolling' ,
@@ -707,6 +719,9 @@ def expanding_count(arg, freq=None):
707
719
The `freq` keyword is used to conform time series data to a specified
708
720
frequency by resampling the data. This is done with the default parameters
709
721
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
722
+
723
+ To know more about the frequency strings (offset aliases), please visit this
724
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
710
725
"""
711
726
return ensure_compat ('expanding' , 'count' , arg , freq = freq )
712
727
@@ -735,6 +750,9 @@ def expanding_quantile(arg, quantile, min_periods=1, freq=None):
735
750
The `freq` keyword is used to conform time series data to a specified
736
751
frequency by resampling the data. This is done with the default parameters
737
752
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
753
+
754
+ To know more about the frequency strings (offset aliases), please visit this
755
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
738
756
"""
739
757
return ensure_compat ('expanding' ,
740
758
'quantile' ,
@@ -818,6 +836,9 @@ def expanding_apply(arg, func, min_periods=1, freq=None,
818
836
The `freq` keyword is used to conform time series data to a specified
819
837
frequency by resampling the data. This is done with the default parameters
820
838
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
839
+
840
+ To know more about the frequency strings (offset aliases), please visit this
841
+ link - http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases.
821
842
"""
822
843
return ensure_compat ('expanding' ,
823
844
'apply' ,
0 commit comments