Public
Edited
Nov 3, 2023
Insert cell
Insert cell
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",
// offset: "normalize",
sort: {color: null,
y: "-x",
// x:"ViolationGroupSort",
reduce: "first"
}
}),
Plot.ruleX([0])
]
})
Insert cell
parking_violations
X
sum
NumberViolations
Y
violation_code_description
Color
ViolationGroupSort
Size
Facet X
Facet Y
Mark
bar
Type Chart, then Shift-Enter. Ctrl-space for more options.

Insert cell
parking_violations
X
sum
NumberViolations
Y
violation_code_description
Color
ViolationGroupLarge
Size
Facet X
Facet Y
Mark
bar
Type Chart, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
color: {
type: "categorical",
scheme: "Spectral",
// reverse: true,
legend: true
},
marginLeft: 200,
y: {},
width,
marks: [
Plot.barX(
parking_violations,
Plot.groupY(
{ x: "sum" },
{
offset: "normalize",
x: "NumberViolations",
y: "violation_code_description",
fill: "ViolationGroupSort",
tip: true,
sort: {
// color: "ViolationGroupSort",
y: "-x",
// channel: "ViolationGroupSort",
// z: "ViolationGroupSort",
// fill: (d) => d[0].ViolationGroupSort
// reduce: (d) => d.ViolationGroupSort
}

}
)
),
Plot.ruleX([0])
]
})
Insert cell
parking_violations_repeat_by_category_20211001-20230930b.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more