File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,16 +69,16 @@ internal interface ExplodeDocs
69
69
*
70
70
* @param dropEmpty If `true`, removes rows with empty lists or DataFrames.
71
71
* If `false`, such rows will be exploded into `null` values.
72
- * @param columns The [ColumnsSelector] used to select columns to explode.
72
+ * @param selector The [ColumnsSelector] used to select columns to explode.
73
73
* If not specified, all applicable columns will be exploded.
74
74
* @return A new [DataFrame] with exploded columns.
75
75
*/
76
76
@Refine
77
77
@Interpretable(" Explode0" )
78
78
public fun <T > DataFrame<T>.explode (
79
79
dropEmpty : Boolean = true,
80
- columns : ColumnsSelector <T , * > = defaultExplodeColumns,
81
- ): DataFrame <T > = explodeImpl(dropEmpty, columns )
80
+ selector : ColumnsSelector <T , * > = defaultExplodeColumns,
81
+ ): DataFrame <T > = explodeImpl(dropEmpty, selector )
82
82
83
83
/* *
84
84
* {@include [ExplodeDocs]}
You can’t perform that action at this time.
0 commit comments