Plot.plot({
caption: "U.S. federal minimum wage, nominal dollars (blue) and inflation-adjusted 'real' May 2023 dollars (orange) ",
marks: [
Plot.lineY(minwage.filter(d => d.Date >= startDate),
{ x: "Date", y: "Nominal", stroke: 'steelblue', tip: true, curve: curve,
title: d => `${d.Month}/${d.Year}: $${d.Nominal.toFixed(2)} (nominal)`}),
Plot.lineY(minwage.filter(d => d.Date >= startDate),
{ x: "Date", y: "Adjusted", stroke: 'darkorange', tip: true,
title: d => `${d.Month}/${d.Year}: $${d.Adjusted.toFixed(2)} (adjusted)`})
],
width,
})