File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
155
155
-i " pandas.core.groupby.SeriesGroupBy.plot PR02" \
156
156
-i " pandas.core.groupby.SeriesGroupBy.sem SA01" \
157
157
-i " pandas.core.resample.Resampler.__iter__ RT03,SA01" \
158
- -i " pandas.core.resample.Resampler.ffill RT03" \
159
158
-i " pandas.core.resample.Resampler.get_group RT03,SA01" \
160
159
-i " pandas.core.resample.Resampler.groups SA01" \
161
160
-i " pandas.core.resample.Resampler.indices SA01" \
Original file line number Diff line number Diff line change @@ -529,14 +529,20 @@ def ffill(self, limit: int | None = None):
529
529
"""
530
530
Forward fill the values.
531
531
532
+ This method fills missing values by propagating the last valid
533
+ observation forward, up to the next valid observation. It is commonly
534
+ used in time series analysis when resampling data to a higher frequency
535
+ (upsampling) and filling gaps in the resampled output.
536
+
532
537
Parameters
533
538
----------
534
539
limit : int, optional
535
540
Limit of how many values to fill.
536
541
537
542
Returns
538
543
-------
539
- An upsampled Series.
544
+ Series
545
+ The resampled data with missing values filled forward.
540
546
541
547
See Also
542
548
--------
You can’t perform that action at this time.
0 commit comments