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: "#200040",
max_points: 10000,
alpha: 5
});
return plot;
}