I want to make some modifications to a few selected tick labels in a plot.
For example, if I do:
label = axes.yaxis.get_major_ticks()[2].label label
This also works in matplotlib 3:
x1 = [0,1,2,3] squad = ['Fultz','Embiid','Dario','Simmons'] plt.xticks(x1, squad, rotation=45)