packages feed

hvega-0.12.0.7: tests/specs/data/sequence1.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "sequence": {
            "start": 0,
            "step": 0.1,
            "stop": 12.7
        }
    },
    "encoding": {
        "x": {
            "field": "data",
            "type": "quantitative"
        },
        "y": {
            "field": "v",
            "type": "quantitative"
        }
    },
    "mark": "line",
    "transform": [
        {
            "as": "v",
            "calculate": "sin(datum.data)"
        }
    ]
}