When plotting figures in the Jupyter notebook, the result is always a grained and low resolution image. With Python's matplotlib
, this issue can be mitigated using the following command:
%config InlineBackend.figure_format = 'svg'
which makes matplotlib.pylplot.plot
produce very high resolution figures in the notebook.
Is there a way to obtain the same result with SageMath's plot
command?