We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 315b696 commit 4f3d8c5Copy full SHA for 4f3d8c5
pyat/at/plot/response_matrix.py
@@ -19,7 +19,7 @@ def plot_norm(resp: ResponseMatrix, ax: Optional[tuple[Axes, Axes]] = None) -> N
19
"""
20
obs, var = resp.check_norm()
21
if ax is None:
22
- fig, (ax1, ax2) = plt.subplots(nrows=2, gridspec_kw={"hspace": 0.5})
+ fig, (ax1, ax2) = plt.subplots(nrows=2, layout="constrained")
23
else:
24
ax1, ax2 = ax[:2]
25
ax1.bar(range(len(obs)), obs)
0 commit comments