Plot.plot({
height: 350,
width: 650,
marginLeft: 250,
marks: [Plot.dot(formattedData, { x: "web-scraper-order", y: "name" })],
x: {
tickSize: 0,
tickFormat: (d, i) => (i % Math.floor(formattedData.length / 4) ? "" : d)
},
y: {
tickSize: 0,
tickFormat: (d, i) => (i % Math.floor(formattedData.length / 4) ? "" : d)
}
})