packages feed

hvega-0.4.0.0: tests/specs/gallery/line/line5.vl

{
    "transform": [
        {
            "filter": "datum.symbol === 'GOOG'"
        }
    ],
    "mark": {
        "interpolate": "step-after",
        "type": "line"
    },
    "data": {
        "url": "https://vega.github.io/vega-lite/data/stocks.csv"
    },
    "$schema": "https://vega.github.io/schema/vega-lite/v3.json",
    "encoding": {
        "x": {
            "field": "date",
            "type": "temporal",
            "axis": {
                "format": "%Y"
            }
        },
        "y": {
            "field": "price",
            "type": "quantitative"
        }
    },
    "description": "Google's stock price over time (quantized as a step-chart)."
}