1
0
Fork 0
mirror of https://github.com/Findus23/halo_comparison.git synced 2024-09-19 16:03:50 +02:00

fix y labels in box

This commit is contained in:
Lukas Winkler 2022-08-25 13:46:58 +02:00
parent 1af06dcd2c
commit 559d006be2
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -129,7 +129,10 @@ def main():
# break
# break
ylabels = [item for item in waveforms for _ in range(2)]
if is_box:
ylabels = waveforms
else:
ylabels = [item for item in waveforms for _ in range(2)]
rowcolumn_labels(axes, ylabels, isrow=True)
rowcolumn_labels(axes, resolutions, isrow=False)