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

Method explode

dask/dataframe/dask_expr/_collection.py:3299–3301  ·  view source on GitHub ↗
(self, column)

Source from the content-addressed store, hash-verified

3297
3298 @derived_from(pd.DataFrame)
3299 def explode(self, column):
3300 column = _convert_to_list(column)
3301 return new_collection(expr.ExplodeFrame(self, column=column))
3302
3303 @derived_from(pd.DataFrame)
3304 def drop(self, labels=None, axis=0, columns=None, errors="raise"):

Callers 2

test_explodeFunction · 0.95
test_dataframe_explodeFunction · 0.95

Calls 2

_convert_to_listFunction · 0.90
new_collectionFunction · 0.90

Tested by 2

test_explodeFunction · 0.76
test_dataframe_explodeFunction · 0.76