October 2018
Beginner to intermediate
676 pages
18h 30m
English
Working on non-interactive mode won't be difficult either:
import matplotlibimport matplotlib.pyplot as plt
plt.ioff()
matplotlib.is_interactive()
# Plot a line graphplt.plot([1.5, 3.0])# Plot the title, X and Y axis labelsplt.title("Non Interactive Mode")plt.xlabel("X-axis")plt.ylabel("Y-axis")
# Display the graph on the screen plt.show()
Read now
Unlock full access