Answers for "remove x axis in matplotlib"

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
0

remove x label matplotlib

plt.xticks(x, " ")
Posted by: Guest on February-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language