viewof test3 = embed({
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
repeat: {column: headers},
"config": {
"invalidValues": null
},
spec: {
width:300,
height:300,
"data": {values: data},
"mark": {"type":"bar", point:true},
"encoding": {
"x": {"field": "date", "type": "temporal"},
"y": {"field": {"repeat":"column"}, "type": "quantitative"},
"color":{"field":"District","type":"nominal"}
}
}
})