extra_plot.axis("off")
// TODO: This isn"t working
plots = [None for i in range(self.n_dim_x)]
for i in range(self.n_dim_x):
idx = (i % self.n_high) * self.n_wide + (i % self.n_wide)
plots[idx] = (i % self.n_wide, i % self.n_high)
plots = [plot for plot in plots if plot is not None]
plots = sorted(plots, key=lambda x: x[1] + x[0] * self.n_high + 1)
else:
fig, axs = plt.subplots(self.n_high, self.n_wide)