Answers for "matplotlib plot dpi -> change format to retina instead of svg"

0

matplotlib plot dpi -> change format to retina instead of svg

import seaborn as sns
sns.set(rc={"figure.dpi":100, 'savefig.dpi':300})
sns.set_context('notebook')
sns.set_style("ticks")
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('retina')
Posted by: Guest on May-31-2021

Code answers related to "matplotlib plot dpi -> change format to retina instead of svg"

Browse Popular Code Answers by Language