Let's say I want some of the x_ticks to be bigger than the others, how can I achieve that?
Ideally I would pass a list of fontsizes to this function, where I plot those x_ticks, but it seems to be missing, I can only pass a number for a fontsize of all ticks.
plt.xticks(ticks=tick_positions, labels=label_names,fontsize=20)
So what I want is instead of 20, I would like to pass a list of fontsizes.