Plot.plot({
title: "🟩 Old (master branch) vs 🟥 New (develop branch)",
y: {type: yscale, domain: [1, 800], grid: true},
x: {type: "log", domain: [50e3, 1e9], grid: true},
color: {legend : true},
marks: [
Plot.line(countMaster, ({x: "x", y: "old", stroke: "green", strokeWidth: 3})),
Plot.line(countDevelop, ({x: "x", y: "new", stroke: "red", strokeWidth: 3})),
Plot.ruleY([0]),
]
})