Here’s a neat trick I learned today to display all matplotlib plots as vector format rather than raster in Jupyter notebooks:
01 02 03 04 05 | % matplotlib inline # produce vector inline graphics from IPython.display import set_matplotlib_formats set_matplotlib_formats( 'pdf' , 'svg' ) import matplotlib.pyplot as plt |