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

Function test_fillna_multi_dataframe

dask/dataframe/tests/test_dataframe.py:2449–2454  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2447
2448
2449def test_fillna_multi_dataframe():
2450 df = _compat.makeMissingDataframe()
2451 ddf = dd.from_pandas(df, npartitions=5, sort=False)
2452
2453 assert_eq(ddf.A.fillna(ddf.B), df.A.fillna(df.B))
2454 assert_eq(ddf.B.fillna(ddf.A), df.B.fillna(df.A))
2455
2456
2457def test_fillna_dask_dataframe_input():

Callers

nothing calls this directly

Calls 2

assert_eqFunction · 0.90
fillnaMethod · 0.45

Tested by

no test coverage detected