Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Grid-Strategy

ncols = 3
nrows = int(np.ceil(len(my_list) / ncols))
ax_width, ax_height = 3, 2
fig, axes = plt.subplots(
    ncols=ncols,
    nrows=nrows,
    figsize=(ax_width * ncols, ax_height * nrows)
)
Source by discourse.matplotlib.org #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
5+1 =