{
const res = await webR.globalShelter.captureR('hist(rnorm(n))', {env: { n }});
const image = res.images[0];
const ctx = DOM.context2d(image.width, image.height, 1);
ctx.drawImage(image, 0, 0, image.width, image.height);
ctx.canvas.style.width = "50%";
return ctx.canvas;
}