24 lines
729 B
Kotlin
Vendored
24 lines
729 B
Kotlin
Vendored
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 typed = dataFrameOf("name", "age", "city", "weight")(
|
|
"Alice", 15, "London", 54,
|
|
"Bob", 45, "Dubai", 87,
|
|
"Charlie", 20, "Moscow", null,
|
|
"Charlie", 40, "Milan", null,
|
|
"Bob", 30, "Tokyo", 68,
|
|
"Alice", 20, null, 55,
|
|
"Charlie", 30, "Moscow", 90,
|
|
)
|
|
|
|
typed.xs("Charlie").compareSchemas()
|
|
|
|
typed.groupBy { name }.xs("Charlie").toDataFrame().compareSchemas()
|
|
|
|
typed.groupBy { name }.xs("Alice") { name }.toDataFrame().compareSchemas()
|
|
return "OK"
|
|
}
|