Plot.plot({
x: {
label: "Commute time (minutes) →",
ticks: 20
},
y: {
label: "↑ People (per 5 minute interval)",
transform: (n) =>
n * 5 * 1000 ,
tickFormat: "~s",
nice: true,
grid: true
},
caption: "Histogram of travel time (to work), US 2000 census.",
marks: [
Plot.rectY(commute, {
x1: "lo",
x2: "hi",
y: (d) => d.people / (d.hi - d.lo),
fill: "#aaa",
insetRight: 1,
title: (d) =>
`${new Intl.NumberFormat("en-US").format(d.people / 1000)} million people\nspend ${d.lo} to ${d.hi} minutes\nto commute to work.`
}),
Plot.text(commute, {
filter: "annotation",
text: "annotation",
x: "hi",
y: (d) => d.people / (d.hi - d.lo),
dx: 2,
dy: 8,
textAnchor: "start"
}),
Plot.ruleY([0])
],
height: 240,
width: 400
})