Skip to content

Commit

Permalink
Updated docstrings for missing description: Fix SA04
Browse files Browse the repository at this point in the history
pandas-dev Issue pandas-dev#28792
  • Loading branch information
suparnasnair authored Oct 7, 2019
1 parent 8a65ab2 commit 8e759f0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pandas/core/groupby/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1631,10 +1631,10 @@ def pad(self, limit=None):
See Also
--------
Series.pad
Series.pad : Pad strings in the Series/Index up to width.
DataFrame.pad
Series.fillna
DataFrame.fillna
Series.fillna : Fill NA/NaN values using the specified method in a Series
DataFrame.fillna : Fill NA/NaN values using the specified method in a DataFrame
"""
return self._fill("ffill", limit=limit)

Expand All @@ -1657,10 +1657,10 @@ def backfill(self, limit=None):
See Also
--------
Series.backfill
DataFrame.backfill
Series.fillna
DataFrame.fillna
Series.backfill : Backward fill the new missing values in the Series.
DataFrame.backfill : Backward fill the new missing values in the DataFrame.
Series.fillna : Fill NA/NaN values using the specified method in the Series
DataFrame.fillna : Fill NA/NaN values using the specified method in the DataFrame
"""
return self._fill("bfill", limit=limit)

Expand Down

0 comments on commit 8e759f0

Please sign in to comment.