addTooltips(Plot.plot({
width : 1000,
height: 500,
x: {axis: null, domain: Query.Typo},
y: {tickFormat: "s"},
color: {range: ["#fef500", "#ffb900", "#fffcaa", "#ff0000", "#a2fc89", "#2f8417"], type: "categorical", legend: true},
facet: {data: Query, x: "Dep"},
marks: [
Plot.barY(Query, {
x: "Typo",
y: "Pop",
title: "Typo",
fill: "Typo",
sort: {fx: "x", reduce: "sum", reverse: true}
}),
Plot.ruleY([0])
]
}))