{ "$schema": "https://vega.github.io/schema/vega/v5.json", "description": "Plot showing a 30 day rolling average with raw values in the background.", "background": "white", "padding": 5, "width": 400, "height": 300, "style": "cell", "data": [ { "name": "source_0", "url": "data/seattle-weather.csv", "format": {"type": "csv", "parse": {"date": "date"}}, "transform": [ { "type": "window", "params": [null], "as": ["rolling_mean"], "ops": ["mean"], "fields": ["temp_max"], "sort": {"field": [], "order": []}, "frame": [-15, 15] } ] }, { "name": "data_0", "source": "source_0", "transform": [ { "type": "filter", "expr": "(isDate(datum[\"date\"]) || (isValid(datum[\"date\"]) && isFinite(+datum[\"date\"]))) && isValid(datum[\"temp_max\"]) && isFinite(+datum[\"temp_max\"])" } ] } ], "marks": [ { "name": "layer_0_marks", "type": "symbol", "style": ["point"], "from": {"data": "data_0"}, "encode": { "update": { "opacity": {"value": 0.3}, "fill": {"value": "transparent"}, "stroke": {"value": "#4c78a8"}, "ariaRoleDescription": {"value": "point"}, "description": { "signal": "\"Date: \" + (timeFormat(datum[\"date\"], '%b %d, %Y')) + \"; Max Temperature: \" + (format(datum[\"temp_max\"], \"\"))" }, "x": {"scale": "x", "field": "date"}, "y": {"scale": "y", "field": "temp_max"} } } }, { "name": "layer_1_marks", "type": "line", "style": ["line"], "sort": {"field": "datum[\"date\"]"}, "from": {"data": "source_0"}, "encode": { "update": { "stroke": {"value": "red"}, "description": { "signal": "\"Date: \" + (timeFormat(datum[\"date\"], '%b %d, %Y')) + \"; Rolling Mean of Max Temperature: \" + (format(datum[\"rolling_mean\"], \"\"))" }, "x": {"scale": "x", "field": "date"}, "y": {"scale": "y", "field": "rolling_mean"}, "strokeWidth": {"value": 3}, "defined": { "signal": "isValid(datum[\"date\"]) && isFinite(+datum[\"date\"]) && isValid(datum[\"rolling_mean\"]) && isFinite(+datum[\"rolling_mean\"])" } } } } ], "scales": [ { "name": "x", "type": "time", "domain": { "fields": [ {"data": "data_0", "field": "date"}, {"data": "source_0", "field": "date"} ] }, "range": [0, {"signal": "width"}] }, { "name": "y", "type": "linear", "domain": { "fields": [ {"data": "data_0", "field": "temp_max"}, {"data": "source_0", "field": "rolling_mean"} ] }, "range": [{"signal": "height"}, 0], "nice": true, "zero": true } ], "axes": [ { "scale": "x", "orient": "bottom", "gridScale": "y", "grid": true, "tickCount": {"signal": "ceil(width/40)"}, "domain": false, "labels": false, "aria": false, "maxExtent": 0, "minExtent": 0, "ticks": false, "zindex": 0 }, { "scale": "y", "orient": "left", "gridScale": "x", "grid": true, "tickCount": {"signal": "ceil(height/40)"}, "domain": false, "labels": false, "aria": false, "maxExtent": 0, "minExtent": 0, "ticks": false, "zindex": 0 }, { "scale": "x", "orient": "bottom", "grid": false, "title": "Date", "labelFlush": true, "labelOverlap": true, "tickCount": {"signal": "ceil(width/40)"}, "zindex": 0 }, { "scale": "y", "orient": "left", "grid": false, "title": "Max Temperature and Rolling Mean", "labelOverlap": true, "tickCount": {"signal": "ceil(height/40)"}, "zindex": 0 } ] }