embed({
"$schema": "https://vega.github.io/schema/vega/v5.json",
"width": 960,
"height": 500,
"autosize": "none",
"data": [
{
"name": "unemp",
"url": "https://vega.github.io/vega-datasets/data/unemployment.tsv",
"format": {"type": "tsv", "parse": "auto"}
},
{
"name":"ue",
"values": uArray3
},
{
"name": "counties",
"url": "https://vega.github.io/vega-datasets/data/us-10m.json",
"format": {"type": "topojson", "feature": "counties"},
"transform": [
{ "type": "lookup", "from": "unemp", "key": "id", "fields": ["id"], "values": ["rate"] },
{ "type": "filter", "expr": "datum.rate != null" },
{ "type": "lookup", "from": "ue", "key": "id", "fields": ["id"], "values": ["name"] },
]
}
],
"projections": [
{
"name": "projection",
"type": "albersUsa"
}
],
"scales": [
{
"name": "divcolor",
"type": "quantize",
"domain": [0, uMax],
"range": {"scheme": "blueorange", "count": 10}
}
],
"legends": [
{
"fill": "divcolor",
"orient": "bottom-right",
"title": "Unemployment",
"format": "0.1%"
}
],
"marks": [
{
"type": "shape",
"from": {"data": "counties"},
"encode": {
"enter": {
"tooltip": {"signal": "{'County': datum.name,'rate': format(datum.rate, '0.1%')}"}
},
"update": { "fill": {"scale": "divcolor", "field": "rate"} },
"hover": { "fill": {"value": "red"} }
},
"transform": [
{ "type": "geoshape", "projection": "projection" }
]
}
]
})