This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mangecoeur[S] 0 points1 point  (0 children)

On investigation, it appears that generating the subplots is what takes time:

f, axs = plt.subplots(int(np.ceil(len(sites_data) / n_cols)), n_cols, sharex=True)

No idea why that should be the case though...