Plot.plot({
x: {
label: "Date"
},
y: {
label: "Temperature",
grid: true
},
marks: [
Plot.ruleY([0]),
Plot.line(marine_csv_sample, {
x: "Time of Observation",
y: "Air Temperature",
stroke: "#4e79a7",
tip: true
}),
Plot.line(marine_csv_sample, {
x: "Time of Observation",
y: "Dew Point Temperature",
stroke: "#e15759",
tip: true
})
]
})