Plot.plot({
x: { domain: [0, 200], label: "Cerebral Perfusion Pressure" },
y: { domain: [0, 100], label: "Cerebral Blood Flow" },
marks: [
Plot.line(data_2, {
x: "x",
y: "y",
stroke: "#C0C0C0",
strokeDasharray: "1,5",
strokeWidth: 4
}),
Plot.line(
data_htn,
{
x: "x",
y: "y",
strokeWidth: 4
},
{
strokeWidth: 7,
stroke: "#8AAFFF"
}
),
Plot.dot(data_dot, {
x: "MAP",
y: "CBF",
r: 12,
fill: "#FF6666",
stroke: "#797979",
strokeWidth: 1,
symbol: "circle"
})
]
})