SyntaxFix
Write A Post
Hire A Developer
Questions
import matplotlib.pyplot as plt fig, ax = plt.subplots(2, 2)
To turn off axes for all subplots, do either:
[axi.set_axis_off() for axi in ax.ravel()]
or
map(lambda axi: axi.set_axis_off(), ax.ravel())