File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8452,8 +8452,8 @@ def asfreq(
8452
8452
will map one-to-one to the new index).
8453
8453
8454
8454
Otherwise, the new index will be equivalent to ``pd.date_range(start, end,
8455
- freq=freq)`` where ``start`` and ``end`` are, respectively, the first and
8456
- last entries in the original index (see :func:`pandas.date_range`). The
8455
+ freq=freq)`` where ``start`` and ``end`` are, respectively, the min and
8456
+ max entries in the original index (see :func:`pandas.date_range`). The
8457
8457
values corresponding to any timesteps in the new index which were not present
8458
8458
in the original index will be null (``NaN``), unless a method for filling
8459
8459
such unknowns is provided (see the ``method`` parameter below).
@@ -8471,7 +8471,7 @@ def asfreq(
8471
8471
does not fill NaNs that already were present):
8472
8472
8473
8473
* 'pad' / 'ffill': propagate last valid observation forward to next
8474
- valid
8474
+ valid based on the order of the index
8475
8475
* 'backfill' / 'bfill': use NEXT valid observation to fill.
8476
8476
how : {{'start', 'end'}}, default end
8477
8477
For PeriodIndex only (see PeriodIndex.asfreq).
You can’t perform that action at this time.
0 commit comments