kandy
 
0.8.0-RC1
Because kandy 0.8.0-RC1 is still in development, this documentation may not be entirely accurate and is subject to change.

Count Plot Simple

Edit pageLast modified: 25 November 2023
val dataframe = dataFrameOf(
    "categories" to listOf(
        "A", "B", "C", "C", "B",
        "A", "C", "B", "A", "B",
        "C", "A", "B", "A", "A",
        "C", "A", "A", "B", "C",
        "C", "A", "A", "C", "B",
        "C", "C", "A", "A", "A",
        "B", "C", "B", "A", "B",
        "C", "A", "A", "B", "A",
        "C", "A", "C", "A", "C"
    )
)

dataframe.plot {
    countPlot("categories")
}
Count Plot Simple