@@ -272,8 +272,8 @@ def rolling_count(arg, window, **kwargs):
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
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.
275
+ To learn more about the frequency strings, please see ` this link
276
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
277
277
"""
278
278
return ensure_compat ('rolling' , 'count' , arg , window = window , ** kwargs )
279
279
@@ -525,8 +525,8 @@ def rolling_quantile(arg, window, quantile, min_periods=None, freq=None,
525
525
frequency by resampling the data. This is done with the default parameters
526
526
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
527
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.
528
+ To learn more about the frequency strings, please see ` this link
529
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
530
530
"""
531
531
return ensure_compat ('rolling' ,
532
532
'quantile' ,
@@ -577,8 +577,8 @@ def rolling_apply(arg, window, func, min_periods=None, freq=None,
577
577
frequency by resampling the data. This is done with the default parameters
578
578
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
579
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.
580
+ To learn more about the frequency strings, please see ` this link
581
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
582
582
"""
583
583
return ensure_compat ('rolling' ,
584
584
'apply' ,
@@ -652,8 +652,8 @@ def rolling_window(arg, window=None, win_type=None, min_periods=None,
652
652
frequency by resampling the data. This is done with the default parameters
653
653
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
654
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.
655
+ To learn more about the frequency strings, please see ` this link
656
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
657
657
"""
658
658
func = 'mean' if mean else 'sum'
659
659
return ensure_compat ('rolling' ,
@@ -720,8 +720,8 @@ def expanding_count(arg, freq=None):
720
720
frequency by resampling the data. This is done with the default parameters
721
721
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
722
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.
723
+ To learn more about the frequency strings, please see ` this link
724
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
725
725
"""
726
726
return ensure_compat ('expanding' , 'count' , arg , freq = freq )
727
727
@@ -751,8 +751,8 @@ def expanding_quantile(arg, quantile, min_periods=1, freq=None):
751
751
frequency by resampling the data. This is done with the default parameters
752
752
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
753
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.
754
+ To learn more about the frequency strings, please see ` this link
755
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
756
756
"""
757
757
return ensure_compat ('expanding' ,
758
758
'quantile' ,
@@ -837,8 +837,8 @@ def expanding_apply(arg, func, min_periods=1, freq=None,
837
837
frequency by resampling the data. This is done with the default parameters
838
838
of :meth:`~pandas.Series.resample` (i.e. using the `mean`).
839
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.
840
+ To learn more about the frequency strings, please see ` this link
841
+ < http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__ .
842
842
"""
843
843
return ensure_compat ('expanding' ,
844
844
'apply' ,
0 commit comments