Skip to content

Commit 669d9b2

Browse files
topper-123jreback
authored andcommitted
Add interpolate to doc string (#20776)
1 parent 54470f3 commit 669d9b2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pandas/core/generic.py

+1
Original file line numberDiff line numberDiff line change
@@ -5289,6 +5289,7 @@ def fillna(self, value=None, method=None, axis=None, inplace=False,
52895289
52905290
See Also
52915291
--------
5292+
interpolate : Fill NaN values using interpolation.
52925293
reindex, asfreq
52935294
52945295
Returns

pandas/core/resample.py

+1
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,7 @@ def fillna(self, method, limit=None):
659659
pad : Forward fill NaN values in the resampled data.
660660
nearest : Fill NaN values in the resampled data
661661
with nearest neighbor starting from center.
662+
interpolate : Fill NaN values using interpolation.
662663
pandas.Series.fillna : Fill NaN values in the Series using the
663664
specified method, which can be 'bfill' and 'ffill'.
664665
pandas.DataFrame.fillna : Fill NaN values in the DataFrame using the

0 commit comments

Comments
 (0)