userPlot = Plot.plot({
width: 1000,
x: {
label: "Language"
},
y: {
grid: true
},
marks: [
Plot.barY(languages, {rx: 4, x: "abbreviation", y: "points", fill: "#7ac70c"}),
Plot.text(languages, {x: "abbreviation", y: "points", text: d => d.points.toFixed(0), dy: -5}),
Plot.ruleY([0])
]
})