kandy 0.6.0 Help

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) }
Histogram Simple
Last modified: 10 May 2024