|
| 1 | +{ |
| 2 | + "$schema": "https://vega.github.io/schema/vega/v5.json", |
| 3 | + "background": "white", |
| 4 | + "padding": 5, |
| 5 | + "width": 200, |
| 6 | + "height": 200, |
| 7 | + "style": "cell", |
| 8 | + "data": [ |
| 9 | + { |
| 10 | + "name": "source_0", |
| 11 | + "url": "data/seattle-weather.csv", |
| 12 | + "format": {"type": "csv", "parse": {"date": "date"}}, |
| 13 | + "transform": [ |
| 14 | + { |
| 15 | + "field": "date", |
| 16 | + "type": "timeunit", |
| 17 | + "units": ["month"], |
| 18 | + "as": ["month_date", "month_date_end"] |
| 19 | + }, |
| 20 | + { |
| 21 | + "type": "aggregate", |
| 22 | + "groupby": ["month_date", "month_date_end"], |
| 23 | + "ops": ["mean"], |
| 24 | + "fields": ["precipitation"], |
| 25 | + "as": ["mean_precipitation"] |
| 26 | + }, |
| 27 | + { |
| 28 | + "type": "filter", |
| 29 | + "expr": "(isDate(datum[\"month_date\"]) || (isValid(datum[\"month_date\"]) && isFinite(+datum[\"month_date\"]))) && isValid(datum[\"mean_precipitation\"]) && isFinite(+datum[\"mean_precipitation\"])" |
| 30 | + } |
| 31 | + ] |
| 32 | + } |
| 33 | + ], |
| 34 | + "marks": [ |
| 35 | + { |
| 36 | + "name": "marks", |
| 37 | + "type": "rect", |
| 38 | + "style": ["bar"], |
| 39 | + "from": {"data": "source_0"}, |
| 40 | + "encode": { |
| 41 | + "update": { |
| 42 | + "fill": {"value": "#4c78a8"}, |
| 43 | + "ariaRoleDescription": {"value": "bar"}, |
| 44 | + "description": { |
| 45 | + "signal": "\"date (month): \" + (timeFormat(datum[\"month_date\"], timeUnitSpecifier([\"month\"], {\"year-month\":\"%b %Y \",\"year-month-date\":\"%b %d, %Y \"}))) + \"; Mean of precipitation: \" + (format(datum[\"mean_precipitation\"], \"\"))" |
| 46 | + }, |
| 47 | + "x2": {"scale": "x", "field": "month_date", "offset": 3}, |
| 48 | + "x": {"scale": "x", "field": "month_date_end", "offset": -2}, |
| 49 | + "y": {"scale": "y", "field": "mean_precipitation"}, |
| 50 | + "y2": {"scale": "y", "value": 0} |
| 51 | + } |
| 52 | + } |
| 53 | + } |
| 54 | + ], |
| 55 | + "scales": [ |
| 56 | + { |
| 57 | + "name": "x", |
| 58 | + "type": "time", |
| 59 | + "domain": { |
| 60 | + "data": "source_0", |
| 61 | + "fields": ["month_date", "month_date_end"] |
| 62 | + }, |
| 63 | + "range": [0, {"signal": "width"}] |
| 64 | + }, |
| 65 | + { |
| 66 | + "name": "y", |
| 67 | + "type": "linear", |
| 68 | + "domain": {"data": "source_0", "field": "mean_precipitation"}, |
| 69 | + "range": [{"signal": "height"}, 0], |
| 70 | + "nice": true, |
| 71 | + "zero": true |
| 72 | + } |
| 73 | + ], |
| 74 | + "axes": [ |
| 75 | + { |
| 76 | + "scale": "x", |
| 77 | + "orient": "bottom", |
| 78 | + "gridScale": "y", |
| 79 | + "grid": true, |
| 80 | + "tickMinStep": { |
| 81 | + "signal": "datetime(2001, 1, 1, 0, 0, 0, 0) - datetime(2001, 0, 1, 0, 0, 0, 0)" |
| 82 | + }, |
| 83 | + "domain": false, |
| 84 | + "labels": false, |
| 85 | + "aria": false, |
| 86 | + "maxExtent": 0, |
| 87 | + "minExtent": 0, |
| 88 | + "ticks": false, |
| 89 | + "zindex": 0 |
| 90 | + }, |
| 91 | + { |
| 92 | + "scale": "y", |
| 93 | + "orient": "left", |
| 94 | + "gridScale": "x", |
| 95 | + "grid": true, |
| 96 | + "tickCount": {"signal": "ceil(height/40)"}, |
| 97 | + "domain": false, |
| 98 | + "labels": false, |
| 99 | + "aria": false, |
| 100 | + "maxExtent": 0, |
| 101 | + "minExtent": 0, |
| 102 | + "ticks": false, |
| 103 | + "zindex": 0 |
| 104 | + }, |
| 105 | + { |
| 106 | + "scale": "x", |
| 107 | + "orient": "bottom", |
| 108 | + "grid": false, |
| 109 | + "title": "date (month)", |
| 110 | + "format": { |
| 111 | + "signal": "timeUnitSpecifier([\"month\"], {\"year-month\":\"%b %Y \",\"year-month-date\":\"%b %d, %Y \"})" |
| 112 | + }, |
| 113 | + "labelFlush": true, |
| 114 | + "labelOverlap": true, |
| 115 | + "tickMinStep": { |
| 116 | + "signal": "datetime(2001, 1, 1, 0, 0, 0, 0) - datetime(2001, 0, 1, 0, 0, 0, 0)" |
| 117 | + }, |
| 118 | + "zindex": 0 |
| 119 | + }, |
| 120 | + { |
| 121 | + "scale": "y", |
| 122 | + "orient": "left", |
| 123 | + "grid": false, |
| 124 | + "title": "Mean of precipitation", |
| 125 | + "labelOverlap": true, |
| 126 | + "tickCount": {"signal": "ceil(height/40)"}, |
| 127 | + "zindex": 0 |
| 128 | + } |
| 129 | + ] |
| 130 | +} |
0 commit comments