File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -377,12 +377,14 @@ def group_by(
377377 ) -> DaftLazyGroupBy :
378378 return DaftLazyGroupBy (self , keys , drop_null_keys = drop_null_keys )
379379
380+ def explode (self , columns : Sequence [str ]) -> DaftLazyFrame :
381+ return self ._with_native (self .native .explode (* columns ))
382+
380383 gather_every = not_implemented .deprecated (
381384 "`LazyFrame.gather_every` is deprecated and will be removed in a future version."
382385 )
383386 join_asof = not_implemented ()
384387 tail = not_implemented .deprecated (
385388 "`LazyFrame.tail` is deprecated and will be removed in a future version."
386389 )
387- explode = not_implemented ()
388390 sink_parquet = not_implemented ()
Original file line number Diff line number Diff line change 3030 "test_dt_to_string_iso_local_datetime_expr" ,
3131 "test_empty_scalar_reduction_with_columns" ,
3232 "test_explode_invalid_operation_error" ,
33- "test_explode_multiple_cols" ,
3433 "test_explode_shape_error" ,
35- "test_explode_single_col" ,
3634 "test_expr_binary" ,
3735 "test_expr_floordiv_by_zero" ,
3836 "test_expr_rfloordiv_by_zero" ,
You can’t perform that action at this time.
0 commit comments