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

Function test_fillna_dask_dataframe_input

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

Source from the content-addressed store, hash-verified

2455
2456
2457def test_fillna_dask_dataframe_input():
2458 df = _compat.makeMissingDataframe()
2459 df1 = _compat.makeMissingDataframe()
2460 ddf = dd.from_pandas(df, npartitions=5)
2461 ddf1 = dd.from_pandas(df1, npartitions=3)
2462
2463 assert_eq(ddf.fillna(ddf1), df.fillna(df1))
2464
2465 ddf_unknown = dd.from_pandas(df, npartitions=5, sort=False)
2466 assert_eq(ddf_unknown.fillna(ddf1), df.fillna(df1))
2467
2468
2469def test_ffill_bfill():

Callers

nothing calls this directly

Calls 2

assert_eqFunction · 0.90
fillnaMethod · 0.45

Tested by

no test coverage detected