matplotlib set xticks different scale code example
Example 1: matplotlib xticks font size
plt.xticks(fontsize=14, rotation=90)
Example 2: turn off xticks matplotlib
# for matplotlib.pyplot
# ---------------------
plt.xticks([], [])
# for axis object
# ---------------
# from Anakhand May 5 at 13:08
# for major ticks
ax.set_xticks([])
# for minor ticks
ax.set_xticks([], minor=True)