kandy 0.6.0 Help

Density Plot Simple

val random = java.util.Random(42) val dataframe = dataFrameOf( "sample" to List(1000) { random.nextGaussian() } ) dataframe.plot { densityPlot("sample") }
val random = java.util.Random(42) val sample = List(1000) { random.nextGaussian() } plot { densityPlot(sample) }
Density Plot Simple
Last modified: 10 May 2024