MCPcopy
hub / github.com/dask/dask / explode

Method explode

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

Source from the content-addressed store, hash-verified

3303
3304 @derived_from(pd.DataFrame)
3305 def explode(self, column):
3306 column = _convert_to_list(column)
3307 return new_collection(expr.ExplodeFrame(self, column=column))
3308
3309 @derived_from(pd.DataFrame)
3310 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