Plot.plot({
inset: 10,
grid: true,
x: {label: "Humidity(%) →"},
y: {domain:[0,100],
label: "↑ Area_in_soccer_fields"},
marks: [
Plot.line(wildfire, {x: "Humidity(%)", y: "Wind_speed(m/s)", curve: "catmull-rom", marker: true}),
Plot.text(wildfire, {filter: (d) => d.year % 5 === 0, x: "Humidity(%)", y: "Time_taken_hours", text: (d) => `${d.year}`, dy: -8})
]
})