diff --git a/figures/figure5.pdf b/figures/figure5.pdf index 4434cfe..ad4d5cf 100644 Binary files a/figures/figure5.pdf and b/figures/figure5.pdf differ diff --git a/figures/figure5.py b/figures/figure5.py index 7b000b3..dbc7a5a 100644 --- a/figures/figure5.py +++ b/figures/figure5.py @@ -26,7 +26,7 @@ for i in range(4): for j in range(3): sub[i].append(fig.add_subplot(gs[i, j])) - sub[i][j].set_ylim(-0.2, 1) + sub[i][j].axhline(y=0, lw = 0.5, color = 'black') if j == 0: if i == 0: sub[i][j].set_ylabel('310 K, INaCa On\nRundown') @@ -46,7 +46,7 @@ sub[i][j].set_xlabel('Time (s)') if j == 1 or j == 2: - ticks = [1, 0.75, 0.5, 0.25, 0] + ticks = [-2, -1, 0, 1] sub[i][j].set_yticks(ticks = ticks, labels = []) if i == 0 or i == 1 or i == 2: @@ -118,6 +118,9 @@ plots[0].text(0.05, 0.9, str(count_on), transform = plots[0].transAxes) plots[1].text(0.05, 0.9, str(count_off), transform = plots[1].transAxes) +for i in range(4): + for j in range(3): + sub[i][j].set_ylim(-1, 1) plt.tight_layout() fig.savefig('figures/figure5.pdf', facecolor='w', transparent=False)