Skip to content

Commit 2ab6643

Browse files
committed
fix: last column of metrics will now be printed in export_image
1 parent e667ee5 commit 2ab6643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/viqa/utils/export.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def export_image(
279279

280280
# Plot full-reference metrics
281281
counter = 0
282-
for i in range(cols - 1):
282+
for i in range(cols):
283283
x_pos = 1.0 / (cols + 1)
284284
lines = 4 # 4 metrics per column
285285
x_pos = x_pos * (i + 1)

0 commit comments

Comments
 (0)