packages feed

hvega-0.12.0.7: tests/specs/textformat/textFormat2.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "url": "https://gicentre.github.io/data/westMidlands/westMidsCrimesAggregated.tsv"
    },
    "encoding": {
        "color": {
            "field": "crimeType",
            "legend": null,
            "type": "nominal"
        },
        "column": {
            "field": "month",
            "header": {
                "format": "%b %y",
                "formatType": "time"
            },
            "type": "temporal"
        },
        "x": {
            "axis": {
                "title": ""
            },
            "field": "crimeType",
            "type": "nominal"
        },
        "y": {
            "aggregate": "sum",
            "field": "reportedCrimes",
            "type": "quantitative"
        }
    },
    "mark": "bar",
    "transform": [
        {
            "filter": "datum.month >= '2016'"
        }
    ],
    "width": 100
}