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 dataframe = dataFrameOf(
"sample" to List(1000) { random.nextGaussian() }
)
dataframe.plot {
histogram("sample")
}