python code to plot pretty figures

Solutions on MaxInterview for python code to plot pretty figures by the best coders in the world

showing results for - "python code to plot pretty figures"
Pedro
26 Jan 2016
1# To plot pretty figures
2%matplotlib inline
3import matplotlib as mpl
4import matplotlib.pyplot as plt
5mpl.rc('axes', labelsize=14)
6mpl.rc('xtick', labelsize=12)
7mpl.rc('ytick', labelsize=12)