Plot.plot({
caption: "Evolution of Kaiser H0524",
y: { padding: 0.1 },
marginLeft: 80,
color: {
legend: true,
domain: Plot.valueof(new_query_2024_04_19, "county"),
scheme: "Category10",
type: "categorical"
},
tooltip: {
fill: "green"
},
marks: [
Plot.barX(new_query_2024_04_19, {
y: "date",
x: "enroll",
fill: "county",
title: (d) => `${d.county}, ${d.enroll}`
})
]
})