Skip to content
6 changes: 4 additions & 2 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -7485,6 +7485,7 @@ def asfreq(
Parameters
----------
freq : DateOffset or str
Frequency DateOffset or string.
method : {'backfill'/'bfill', 'pad'/'ffill'}, default None
Method to use for filling holes in reindexed Series (note this
does not fill NaNs that already were present):
Expand All @@ -7502,11 +7503,12 @@ def asfreq(

Returns
-------
converted : same type as caller
Same type as caller
Object converted to the specified frequency.

See Also
--------
reindex
reindex : Conform DataFrame to new index with optional filling logic.

Notes
-----
Expand Down