{ "$schema": "https://vega.github.io/schema/vega/v5.json", "background": "white", "padding": 5, "width": 300, "height": 200, "style": "cell", "data": [ { "name": "source_0", "url": "data/unemployment-across-industries.json", "format": {"type": "json", "parse": {"date": "date"}}, "transform": [ { "field": "date", "type": "timeunit", "units": ["year", "month"], "as": ["yearmonth_date", "yearmonth_date_end"] }, { "type": "aggregate", "groupby": ["yearmonth_date", "series"], "ops": ["sum"], "fields": ["count"], "as": ["sum_count"] }, { "type": "impute", "field": "sum_count", "groupby": ["series"], "key": "yearmonth_date", "method": "value", "value": 0 }, { "type": "stack", "groupby": ["yearmonth_date"], "field": "sum_count", "sort": {"field": ["series"], "order": ["descending"]}, "as": ["sum_count_start", "sum_count_end"], "offset": "normalize" } ] } ], "marks": [ { "name": "pathgroup", "type": "group", "from": { "facet": { "name": "faceted_path_main", "data": "source_0", "groupby": ["series"] } }, "encode": { "update": { "width": {"field": {"group": "width"}}, "height": {"field": {"group": "height"}} } }, "marks": [ { "name": "marks", "type": "area", "style": ["area"], "sort": {"field": "datum[\"yearmonth_date\"]"}, "from": {"data": "faceted_path_main"}, "encode": { "update": { "orient": {"value": "vertical"}, "fill": {"scale": "color", "field": "series"}, "description": { "signal": "\"date (year-month): \" + (timeFormat(datum[\"yearmonth_date\"], '%Y')) + \"; Sum of count: \" + (format(datum[\"sum_count_end\"]-datum[\"sum_count_start\"], \"\")) + \"; series: \" + (isValid(datum[\"series\"]) ? datum[\"series\"] : \"\"+datum[\"series\"])" }, "x": {"scale": "x", "field": "yearmonth_date"}, "y": {"scale": "y", "field": "sum_count_end"}, "y2": {"scale": "y", "field": "sum_count_start"}, "defined": { "signal": "isValid(datum[\"yearmonth_date\"]) && isFinite(+datum[\"yearmonth_date\"]) && isValid(datum[\"sum_count\"]) && isFinite(+datum[\"sum_count\"])" } } } } ] } ], "scales": [ { "name": "x", "type": "time", "domain": {"data": "source_0", "field": "yearmonth_date"}, "range": [0, {"signal": "width"}] }, { "name": "y", "type": "linear", "domain": [0, 1], "range": [{"signal": "height"}, 0], "nice": true, "zero": true }, { "name": "color", "type": "ordinal", "domain": {"data": "source_0", "field": "series", "sort": true}, "range": {"scheme": "category20b"} } ], "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": "x", "orient": "bottom", "grid": false, "title": "date (year-month)", "domain": false, "format": "%Y", "labelFlush": true, "labelOverlap": true, "tickCount": {"signal": "ceil(width/40)"}, "zindex": 0 } ], "legends": [{"fill": "color", "symbolType": "circle", "title": "series"}] }