blob: 81b26b27e1f5af53dee41786180aab4945cfd7ca [file]
import org.jetbrains.kotlinx.dataframe.*
import org.jetbrains.kotlinx.dataframe.annotations.*
import org.jetbrains.kotlinx.dataframe.api.*
import org.jetbrains.kotlinx.dataframe.io.*
fun box(): String {
val df = dataFrameOf("a", "b", "c")(1, 2, 3)
.group { a and b }.into("d")
.move { d.a }.into("renamedA")
df.renamedA
df.checkCompileTimeSchemaEqualsRuntime()
return "OK"
}