python code to plot pretty figures

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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)