Scatter plot

Source code Author

using Deneb
cars = "https://vega.github.io/vega-datasets/data/cars.json"
chart = Data(url=cars) * Mark(:point) * Encoding(
    "Horsepower:q",
    "Miles_per_Gallon:q",
    color=:Origin
)

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