matplotlib larger major tick code example
Example 1: adjust tick label size matplotlib
plt.xticks(fontsize=)
Example 2: matplotlib limit number of ticks
plt.xaxis.set_major_locator(plt.MaxNLocator(3))
plt.yaxis.set_major_locator(plt.MaxNLocator(3))