Plot.plot({
width: 1000,
height: 200,
x: {axis: null, label: null},
y: {domain:[-100,100], axis: null, label: null},
marks:[
Plot.ruleX(uva_bball_allyears, {
x: (d,i) => i,
y: d => d.UVA_score - d.Opponent_score,
stroke: d => {
if (d.Location == "Charlottesville, Va.") {return "blue"} else {return "orange"}
},
dx: 5,
})
]
})