Removing specific ticks from matplotlib plot
- by Jsg91
I'm trying to remove the origin ticks from my plot below to stop them overlapping, alternatively just moving them away from each other would also be great I tried this:
xticks = ax.xaxis.get_major_ticks()
xticks[0].label1.set_visible(False)
yticks = ax.yaxis.get_major_ticks()
yticks[0].label1.set_visible(False)
However this removed the first and last ticks from the y axis like so:
Does anyone have an idea about how to do this? Any help would be greatly appreciated.