Plot.plot({
marks: [
Plot.ruleY([0]),
Plot.lineY(data, { x: "year", y: "dehli", stroke: "blue" }),
Plot.lineY(data, { x: "year", y: "london", stroke: "red" }),
Plot.lineY(data, { x: "year", y: "lagos", stroke: "orange" }),
Plot.lineY(data, { x: "year", y: "tokyo", stroke: "green" })
]
})