Plot.plot({
grid: true,
width: width,
height: width*9/16,
inset: 30,
x: {
label: "Pythag Win Percentage →",
},
y: {
label: "↑ Win Percentage",
},
color: {
type: "diverging"
},
marks: [
Plot.dot(standings, {x: d=>(d.pWin),
y: "pWinPythag",
r:5,
fill: "TotalFavor",
stroke:"#333"}),
Plot.text(standings, {x: d=>(d.pWin), y: "pWinPythag", text: "Tm", dy: +16}),
]
})