Plot.plot({
style: {
fontSize: "12pt",
fontFamily: "Belanosima",
backgroundColor: "black"
},
marks: [
Plot.dot(df, {
x: "x",
y: "y",
fill: "dist2HW",
title: (d) => `Author Name: ${d.name} \n Hadley Distance: ${d.dist2HW}`
})
],
color: { type: "linear", legend: false, scheme: "Rainbow" },
axis: null,
height: 1000,
width: 1000,
marginRight: 20,
marginLeft: 20
})