packages feed

hvega-0.12.0.7: tests/specs/gallery/label/label5.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "url": "https://vega.github.io/vega-lite/data/seattle-weather.csv"
    },
    "description": "Monthly precipitation with mean value overlay",
    "layer": [
        {
            "encoding": {
                "x": {
                    "field": "date",
                    "timeUnit": "month",
                    "type": "ordinal"
                },
                "y": {
                    "aggregate": "mean",
                    "field": "precipitation",
                    "type": "quantitative"
                }
            },
            "mark": "bar"
        },
        {
            "encoding": {
                "color": {
                    "value": "red"
                },
                "size": {
                    "value": 3
                },
                "y": {
                    "aggregate": "mean",
                    "field": "precipitation",
                    "type": "quantitative"
                }
            },
            "mark": "rule"
        }
    ]
}