Daehyun
1/12/2019 - 5:55 AM

Matplotlib; Hide axis

# Hide axis if it is outer
plt.gca().label_outer()

# Or, hide any axis
plt.setp(plt.gca().get_xticklabels(), visible=False)