Plot.plot({
x: { tickFormat: d3.timeFormat('%b'), interval: d3.timeMonth },
y: { grid: true, label: '↑ Incidents' },
marks: [
Plot.rectY(incidents, Plot.binX(
{ y: 'count' },
{ x: 'date', thresholds: d3.timeMonth, filter: during2020 }
)),
Plot.text(incidents, Plot.binX(
{
y: 'count',
text: 'count',
},
{
x: 'date',
thresholds: d3.timeMonth,
filter: during2020,
dy: -8,
dx: 3,
textAnchor: 'start',
fill: 'black',
}
))
]
})