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
6969 *
7070 * @param dropEmpty If `true`, removes rows with empty lists or DataFrames.
7171 * 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.
7373 * If not specified, all applicable columns will be exploded.
7474 * @return A new [DataFrame] with exploded columns.
7575 */
7676@Refine
7777@Interpretable(" Explode0" )
7878public fun <T > DataFrame<T>.explode (
7979 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 )
8282
8383/* *
8484 * {@include [ExplodeDocs]}
You can’t perform that action at this time.
0 commit comments