Answers for "matplotlib don't show x axis labels"

2

not x axis labels python

plt.gca().axes.get_xaxis().set_visible(False)
plt.gca().axes.get_yaxis().set_visible(False)
Posted by: Guest on October-16-2020
1

pyplot not show axis

plt.axis('off')
Posted by: Guest on March-18-2020

Code answers related to "matplotlib don't show x axis labels"

Python Answers by Framework

Browse Popular Code Answers by Language