Plot.plot({
marginLeft: 150,
width: 828,
height: 832,
x: {axis: "top"},
y: {label: null},
color: {scheme: "Spectral", legend: "ramp", width: 450, label: "Repeat Violations"},
marks: [
Plot.barX(parking_violations,
{
x: "NumberViolations",
y: "violation_code_description",
fill: "ViolationGroupSort",
sort: {color: null,
y: "-x",
reduce: "first"
}
}),
Plot.ruleX([0])
]
})