Binned scatterplot

Source code Author

using Deneb
data = Data(url="https://vega.github.io/vega-datasets/data/movies.json")
chart = Data(data) * Mark(:circle) * Encoding(
    x=field("IMDB Rating", bin=true),
    y=field("Rotten Tomatoes Rating", bin=true),
    size="count()"
)

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