plot = {
window.last_clicked = {};
d3.select("#plot").selectAll("div").remove();
const plot = new Deepscatter("#plot", width, Math.floor(width * 0.75));
await plot.plotAPI({
source_url: "https://benschmidt.org/arxiv",
background_color: [45, 0, 75],
max_points: 1000000,
alpha: 5
});
return plot;
}