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

Function test_isna

dask/dataframe/tests/test_dataframe.py:4337–4341  ·  view source on GitHub ↗
(values)

Source from the content-addressed store, hash-verified

4335
4336@pytest.mark.parametrize("values", [[np.nan, 0], [1, 1]])
4337def test_isna(values):
4338 s = pd.Series(values)
4339 ds = dd.from_pandas(s, npartitions=2)
4340
4341 assert_eq(pd.isna(s), dd.isna(ds))
4342
4343
4344@pytest.mark.parametrize("drop", [0, 9])

Callers

nothing calls this directly

Calls 2

assert_eqFunction · 0.90
isnaMethod · 0.45

Tested by

no test coverage detected