Plot.plot({
y: {
grid: true,
percent: true
},
marks: [
Plot.ruleY([0]),
Plot.barY(alphabet, {
x: "letter",
y: "frequency",
sort: { x: "y", reverse: true }
}),
Plot.axisX({ label: null }),
Plot.axisX({
ticks: [],
fontSize: 50,
fill: "steelblue",
labelOffset: 65
})
],
marginBottom: 70
})