positions = {
const R = {};
Plot.image(
subset,
Plot.dodgeY({
sort: "followers",
anchor: "middle",
x: "followers",
src: "image",
title: "name",
r: 15,
render: (index, scales, values) => ((R.values = values), null)
})
).plot({ height: 420, x: { type: "log" } });
return [R.values.x, R.values.y];
}