MCPcopy Index your code
hub / github.com/dask/dask / bfill

Method bfill

dask/dataframe/dask_expr/_collection.py:2005–2012  ·  view source on GitHub ↗
(self, axis=0, limit=None)

Source from the content-addressed store, hash-verified

2003
2004 @derived_from(pd.DataFrame)
2005 def bfill(self, axis=0, limit=None):
2006 axis = _validate_axis(axis)
2007 if axis == 1:
2008 return self.map_partitions(M.bfill, axis=axis, limit=limit)
2009 frame = self
2010 if limit is None:
2011 frame = FillnaCheck(self, "bfill", lambda x: x.npartitions - 1)
2012 return new_collection(BFill(frame, limit))
2013
2014 @derived_from(pd.DataFrame)
2015 def fillna(self, value=None, axis=None):

Callers 1

_compute_partition_statsFunction · 0.45

Calls 5

map_partitionsMethod · 0.95
_validate_axisFunction · 0.90
FillnaCheckClass · 0.90
new_collectionFunction · 0.90
BFillClass · 0.90

Tested by

no test coverage detected