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

Function test_dropna

dask/dataframe/dask_expr/tests/test_collection.py:420–425  ·  view source on GitHub ↗
(pdf)

Source from the content-addressed store, hash-verified

418
419
420def test_dropna(pdf):
421 pdf.loc[0, "y"] = np.nan
422 df = from_pandas(pdf)
423 assert_eq(df.dropna(), pdf.dropna())
424 assert_eq(df.dropna(how="all"), pdf.dropna(how="all"))
425 assert_eq(df.y.dropna(), pdf.y.dropna())
426
427
428def test_value_counts_with_dropna():

Callers

nothing calls this directly

Calls 3

from_pandasFunction · 0.90
assert_eqFunction · 0.90
dropnaMethod · 0.45

Tested by

no test coverage detected