Answers for "can I create a python figure just like matlab style"

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
0

figure vs plot matplotlib

fig1, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2)
Posted by: Guest on November-11-2020

Code answers related to "can I create a python figure just like matlab style"

Python Answers by Framework

Browse Popular Code Answers by Language