Answers for "how to make nice plots"

1

python code to plot pretty figures

# To plot pretty figures
%matplotlib inline
import matplotlib as mpl
import matplotlib.pyplot as plt
mpl.rc('axes', labelsize=14)
mpl.rc('xtick', labelsize=12)
mpl.rc('ytick', labelsize=12)
Posted by: Guest on April-04-2020

Code answers related to "how to make nice plots"

Python Answers by Framework

Browse Popular Code Answers by Language