Open
Description
This is what I'm doing currently to get high-res plots displayed in Jupyter-VSCode
import plotnine as p9
import matplotlib.pyplot as plt
p = (p9.ggplot....)
fig = p.draw()
fig.set_dpi(300)
display(fig)
plt.close(fig)
It would be great if I could instead put the dpi as an argument to p.show()