Jupyter: High-res plots
You can enable high-resolution plots in jupyter notebook using the following configuration:
%config InlineBackend.figure_format = 'retina'
or add the following to your jupyter_notebook_config.py
:
c.InlineBackend.figure_format = 'retina'
Via Martina Pugliese.
Leave a comment