Plot.plot({
height: 640,
padding: 0.05,
grid: true,
round: true,
x: {
axis: "top",
tickFormat: "-",
ticks: [500],
},
y: {
ticks: [-10],
},
color: {
type: "linear",
range: ['#fff','#FFE100'],
},
marks: [
Plot.cell(fires,
Plot.binY({X: "count"}, {
x: d => d.BRIGHTNESS / 10,
y: "LATITUDE",
fill: "CONFIDENCE",
})),
]
})