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

Method fillna

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

Source from the content-addressed store, hash-verified

399 return Replace(self, to_replace=to_replace, value=value, regex=regex)
400
401 def fillna(self, value=None):
402 if isinstance(value, Expr) and not are_co_aligned(self, value):
403 return FillnaAlign(self, value=value)
404 return Fillna(self, value=value)
405
406 def rename_axis(
407 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