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

Class BFill

dask/dataframe/dask_expr/_expr.py:3438–3451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3436
3437
3438class BFill(FFill):
3439 func = M.bfill
3440
3441 @property
3442 def before(self):
3443 # bfill is the opposite direction of ffill, so
3444 # we swap before with after of ffill.
3445 return super().after
3446
3447 @property
3448 def after(self):
3449 # bfill is the opposite direction of ffill, so
3450 # we swap after with before of ffill.
3451 return super().before
3452
3453
3454class Shift(MapOverlap):

Callers 1

bfillMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…