I have a heatmap and I wanted to had a tick, for a value above the maximum tick represented.
Something like this:
.
I tried to add the tick and the tick label:
yticks_i_want = np.append(ax.get_yticks(), 2600)
ax.set_yticks(yticks_i_want)
However, this happens:

The best solution I found so far was to use ax.text(), like so:
ax.text(-0.059, 2600, '2600 -', transform=ax.get_yaxis_transform(),
ha='center', va='top')
Am I missing something?
Is there another way to add the tick or must I "cut" plot 2 to show only the values I want?
