This commit is contained in:
tillraab 2019-09-11 14:35:00 +02:00
parent 76e1c10958
commit 04c8f79df5

View File

@ -33,8 +33,9 @@ class plot():
def create_axis(self):
gs = gridspec.GridSpec(self.n_rows, self.n_cols)
for y in range(self.n_rows):
for x in range(self.n_cols):
for y in range(self.n_rows):
# for x in range(self.n_cols):
ax = plt.subplot(gs[y, x])
if not y == self.n_rows - 1: