Plot.plot({
marginBottom: 60,
marginLeft: 80,
marginRight: 60,
x: {
label: null,
},
marks: [
Plot.barY(alphabet, {fill: "#ddd", x: "letter", y: "frequency"}),
Plot.axisX({fill: "orange", stroke: "green", fontSize: 18, labelAnchor: "center", labelOffset: 45, label: null}),
Plot.axisX({fill: "red", ticks: [], fontSize: 18, labelAnchor: "center", labelArrow: false, labelOffset: 50, label: "Letters"}),
Plot.axisY({fill: "blue", stroke: "red", fontSize: 18, labelAnchor: "center", label: null}),
Plot.axisY({fill: "green", ticks: [], fontSize: 18, labelAnchor: "center", labelArrow: false, labelOffset: 75, label: "Frequency"}),
]
})