Plot.plot({
inset: 20,
x: {label: "First inauguration date →"},
y: {grid: true, label: "↑ Net favorability (%)", tickFormat: "+f"},
marks: [
Plot.ruleY([0]),
Plot.image(presidents, {
x: "First Inauguration Date",
y: (d) => d["Very Favorable %"] + d["Somewhat Favorable %"] - d["Very Unfavorable %"] - d["Somewhat Unfavorable %"],
src: "Portrait URL",
width: 40,
title: "Name"
})
]
})