MCPcopy Create free account
hub / github.com/dask/dask / fillna

Method fillna

dask/dataframe/dask_expr/_expr.py:402–405  ·  view source on GitHub ↗
(self, value=None)

Source from the content-addressed store, hash-verified

400 return Replace(self, to_replace=to_replace, value=value, regex=regex)
401
402 def fillna(self, value=None):
403 if isinstance(value, Expr) and not are_co_aligned(self, value):
404 return FillnaAlign(self, value=value)
405 return Fillna(self, value=value)
406
407 def rename_axis(
408 self, mapper=no_default, index=no_default, columns=no_default, axis=0

Callers 13

check_metaFunction · 0.45
fillna_checkFunction · 0.45
test_io_fusion_blockwiseFunction · 0.45
test_fillnaFunction · 0.45
test_fillnaFunction · 0.45
test_fillna_series_typesFunction · 0.45

Calls 3

are_co_alignedFunction · 0.85
FillnaAlignClass · 0.85
FillnaClass · 0.85

Tested by 11

test_io_fusion_blockwiseFunction · 0.36
test_fillnaFunction · 0.36
test_fillnaFunction · 0.36
test_fillna_series_typesFunction · 0.36
test_attrs_seriesFunction · 0.36