Histogram Simple
val random = java.util.Random(42)
val dataframe = dataFrameOf(
"sample" to List(1000) { random.nextGaussian() }
)
dataframe.plot {
histogram("sample")
}
val random = java.util.Random(42)
val sample = List(1000) { random.nextGaussian() }
plot {
histogram(sample)
}
Last modified: 25 November 2023