All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlinx.dataframe.api.shuffle.kt Maven / Gradle / Ivy

package org.jetbrains.kotlinx.dataframe.api

import org.jetbrains.kotlinx.dataframe.DataColumn
import org.jetbrains.kotlinx.dataframe.DataFrame
import org.jetbrains.kotlinx.dataframe.indices

// region DataColumn

public fun  DataColumn.shuffle(): DataColumn = get(indices.shuffled())

// endregion

// region DataFrame

public fun  DataFrame.shuffle(): DataFrame = getRows(indices.shuffled())

// endregion




© 2015 - 2025 Weber Informatics LLC | Privacy Policy