Plot.plot({
height: 750,
width: 1250,
grid: true,
x: {
domain: [0, .6]
},
y: {
domain: [40, 96]
},
marks: [
Plot.dot(topSongs, {x: "speechiness", y: "popularity", fill: "top"}),
Plot.text(topSongs, {x: "speechiness", y: "popularity", fill: "top", text: "title", textAnchor: "start", dx: 10}),
],
color: {
legend: true,
},
})