Skip to content

Commit

Permalink
Fixes issue ImSoErgodic#22
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideFauri committed Jun 4, 2018
1 parent 5a78752 commit c6550bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pyupset/visualisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ def _prepare_figure(self, additional_plots):
tablesize_w, tablesize_h = setsize_w + 2, self.rows
intmatrix_w, intmatrix_h = tablesize_w + self.cols, self.rows
intbars_w, intbars_h = tablesize_w + self.cols, self.rows * 4
ax_setsize = plt.subplot(gs_top[-setsize_h:, 0:setsize_w])
ax_tablenames = plt.subplot(gs_top[-tablesize_h:, setsize_w:tablesize_w])
ax_intmatrix = plt.subplot(gs_top[-intmatrix_h:, tablesize_w:intmatrix_w])
ax_setsize = plt.subplot(gs_top[-setsize_h-1:, 0:setsize_w])
ax_tablenames = plt.subplot(gs_top[-tablesize_h-1:, setsize_w:tablesize_w])
ax_intmatrix = plt.subplot(gs_top[-intmatrix_h-1:, tablesize_w:intmatrix_w])
ax_intbars = plt.subplot(gs_top[:self.rows * 4 - 1, tablesize_w:intbars_w])

add_ax = []
Expand Down

0 comments on commit c6550bc

Please sign in to comment.