MCPcopy Index your code
hub / github.com/dask/dask / test_explode

Function test_explode

dask/dataframe/dask_expr/tests/test_collection.py:195–200  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

193
194@xfail_gpu("https://github.com/rapidsai/cudf/issues/10271")
195def test_explode():
196 with dask.config.set({"dataframe.convert-string": False}):
197 pdf = pd.DataFrame({"a": [[1, 2], [3, 4]]})
198 df = from_pandas(pdf)
199 assert_eq(pdf.explode(column="a"), df.explode(column="a"))
200 assert_eq(pdf.a.explode(), df.a.explode())
201
202
203@xfail_gpu("https://github.com/rapidsai/cudf/issues/10271")

Callers

nothing calls this directly

Calls 5

explodeMethod · 0.95
from_pandasFunction · 0.90
assert_eqFunction · 0.90
setMethod · 0.80
explodeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…