Plot.plot({
y: {
grid: true,
domain: [0, 100]
},
x: {
grid: true,
},
marks: [
Plot.line(proELEC, {x: "date", y: "value", stroke: "cyan", curve: "catmull-rom"}),
Plot.line(pasELEC, {x: "date", y: "value", stroke: "blue", curve: "catmull-rom"}),
Plot.line(proGAS, {x: "date", y: "value", stroke: "orange", curve: "catmull-rom"}),
Plot.line(pasGAS, {x: "date", y: "value", stroke: "red", curve: "catmull-rom"}),
]
})