From 0aa5eeac76c5d5df10c5f98e6381d707b40c35d8 Mon Sep 17 00:00:00 2001 From: herrfz Date: Tue, 18 Dec 2012 01:19:53 +0100 Subject: [PATCH] Update default fillna method in the docstring --- pandas/core/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index fbf5f0eecccc2..f6d8298aa51ff 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -3233,7 +3233,7 @@ def fillna(self, value=None, method=None, axis=0, inplace=False, Parameters ---------- - method : {'backfill', 'bfill', 'pad', 'ffill', None}, default 'pad' + method : {'backfill', 'bfill', 'pad', 'ffill', None}, default None Method to use for filling holes in reindexed Series pad / ffill: propagate last valid observation forward to next valid backfill / bfill: use NEXT valid observation to fill gap