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