Histogram with fine binning

Source code Author

using Deneb
data = Data(url="https://vega.github.io/vega-datasets/data/movies.json")
chart = Data(data) * Mark(:bar) * Encoding(
    x=field("IMDB Rating", bin=(;maxbins=50)),
    y="count()"
)

This page was generated using DemoCards.jl and Literate.jl.