Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko committed May 5, 2023
1 parent 0f5b801 commit 4f90ac5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions benchmarks/scripts/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,10 @@ def extract_horizontal_space(df):

num_rows = len(vertical_axis_ids)
num_cols = max(1, len(extract_horizontal_space(df)))

if num_rows == 0:
return

fig, axes = plt.subplots(nrows=num_rows, ncols=num_cols, gridspec_kw = {'wspace': 0, 'hspace': 0})


Expand Down

0 comments on commit 4f90ac5

Please sign in to comment.