Open sylvaincom opened 1 week ago
Following https://github.com/probabl-ai/skore/issues/672, we could augment the dpi of maptlotlib by changing the rcParams, for instance doing an import in the conf.py
rcParams
conf.py
Edit: I had this in mind for matplotlib: rcParams that allows to configure the fig size for all plots, and there is also something for the dpi https://matplotlib.org/stable/users/explain/customizing.html
import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np mpl.rcParams['figure.dpi'] = 200 plt.plot(np.arange(10)) plt.show()
Following https://github.com/probabl-ai/skore/issues/672, we could augment the dpi of maptlotlib by changing the
rcParams
, for instance doing an import in theconf.py
Edit: I had this in mind for matplotlib:
rcParams
that allows to configure the fig size for all plots, and there is also something for the dpi https://matplotlib.org/stable/users/explain/customizing.html