(self, axis=0, limit=None)
| 1987 | |
| 1988 | @derived_from(pd.DataFrame) |
| 1989 | def ffill(self, axis=0, limit=None): |
| 1990 | axis = _validate_axis(axis) |
| 1991 | if axis == 1: |
| 1992 | return self.map_partitions(M.ffill, axis=axis, limit=limit) |
| 1993 | frame = self |
| 1994 | if limit is None: |
| 1995 | frame = FillnaCheck(self, "ffill", lambda x: 0) |
| 1996 | return new_collection(FFill(frame, limit)) |
| 1997 | |
| 1998 | @derived_from(pd.DataFrame) |
| 1999 | def bfill(self, axis=0, limit=None): |
nothing calls this directly
no test coverage detected