Update diff for larger figure
This commit is contained in:
parent
d5d90a36a5
commit
9e229b7193
1 changed files with 1 additions and 2 deletions
|
@ -57,8 +57,8 @@ def get_pickle(out):
|
|||
|
||||
models = list(map(get_pickle, args.output))
|
||||
|
||||
fig, ax = plt.subplots(len(models), figsize=(6, 1.5 * len(models)), dpi=100, constrained_layout=True)
|
||||
if args.timestep is None:
|
||||
fig, ax = plt.subplots(len(models), constrained_layout=True)
|
||||
for i, (_ax, _model) in enumerate(zip(ax, models)):
|
||||
_ax.contour(
|
||||
_model.t,
|
||||
|
@ -77,7 +77,6 @@ if args.timestep is None:
|
|||
)
|
||||
)
|
||||
else:
|
||||
fig, ax = plt.subplots(len(models), constrained_layout=True)
|
||||
for i, (_ax, _model) in enumerate(zip(ax, models)):
|
||||
_ax.tricontour(
|
||||
_model.x,
|
||||
|
|
Loading…
Reference in a new issue