packages feed

hvega-0.11.0.1: tests/specs/gallery/scatter/scatter6.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "url": "https://vega.github.io/vega-lite/data/cars.json"
    },
    "description": "A bubbleplot showing horsepower on x, miles per gallons on y, and acceleration on size.",
    "encoding": {
        "size": {
            "field": "Acceleration",
            "type": "quantitative"
        },
        "x": {
            "field": "Horsepower",
            "type": "quantitative"
        },
        "y": {
            "field": "Miles_per_Gallon",
            "type": "quantitative"
        }
    },
    "mark": "point"
}