blob: 55383d46681cde1569bc1c6a9e6f5f8035e1df94 [file]
import org.jetbrains.kotlinx.dataframe.*
import org.jetbrains.kotlinx.dataframe.annotations.*
import org.jetbrains.kotlinx.dataframe.api.*
import org.jetbrains.kotlinx.dataframe.io.*
import java.math.BigInteger
fun box(): String {
// multiple columns
val personsDf = dataFrameOf(
"name", "age", "city", "weight", "height", "yearsToRetirement", "workExperienceYears", "dependentsCount", "annualIncome", "bigNumber",
)(
"Alice", 15, "London", 99.5, "1.85", 50f, 0.toShort(), 0.toByte(), 0L, BigInteger.valueOf(23L),
"Bob", 20, "Paris", 140.0, "1.35", 45f, 2.toShort(), 0.toByte(), 12000L, BigInteger.valueOf(12L),
"Charlie", 100, "Dubai", 75.0, "1.95", 0f, 70.toShort(), 0.toByte(), 0L, BigInteger.valueOf(68798L),
"Rose", 1, "Moscow", 45.33, "0.79", 64f, 0.toShort(), 2.toByte(), 0L, BigInteger.valueOf(46556L),
"Dylan", 35, "London", 23.4, "1.83", 30f, 15.toShort(), 1.toByte(), 90000L, BigInteger.valueOf(235L),
"Eve", 40, "Paris", 56.72, "1.85", 25f, 18.toShort(), 3.toByte(), 125000L, BigInteger.valueOf(-23534L),
"Frank", 55, "Dubai", 78.9, "1.35", 10f, 35.toShort(), 2.toByte(), 145000L, BigInteger.valueOf(235L),
"Grace", 29, "Moscow", 67.8, "1.65", 36f, 5.toShort(), 1.toByte(), 70000L, BigInteger.valueOf(0L),
"Hank", 60, "Paris", 80.22, "1.75", 5f, 40.toShort(), 4.toByte(), 200000L, BigInteger.valueOf(-4L),
"Isla", 22, "London", 75.1, "1.85", 43f, 1.toShort(), 0.toByte(), 30000L, BigInteger.valueOf(2345L),
)
// scenario #0: all supported numerical columns
personsDf.mean().let { row ->
row.df().compareSchemas()
val mean01: Double = row.age
val mean02: Double = row.weight
val mean03: Double = row.yearsToRetirement
val mean04: Double = row.workExperienceYears
val mean05: Double = row.dependentsCount
val mean06: Double = row.annualIncome
}
// scenario #1: particular column
personsDf.meanFor { age }.let { row ->
row.df().compareSchemas()
val mean11: Double = row.age
}
// scenario #1.1: particular column with converted type
personsDf.meanFor { dependentsCount }.let { row ->
row.df().compareSchemas()
val mean111: Double = row.dependentsCount
}
// scenario #2: mean of values per columns separately
personsDf.meanFor { age and weight and workExperienceYears and dependentsCount and annualIncome }.let { row ->
row.df().compareSchemas()
val mean31: Double = row.age
val mean32: Double = row.weight
val mean33: Double = row.workExperienceYears
val mean34: Double = row.dependentsCount
val mean35: Double = row.annualIncome
}
return "OK"
}