Answers for "matplotlib hide y axis tick 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

plt hide axis ticks

pythonCopyimport matplotlib.pyplot as plt

plt.plot([0, 10], [0, 10])
plt.xlabel("X Label")
plt.ylabel("Y Label")

ax = plt.gca()
ax.axes.xaxis.set_visible(False)
ax.axes.yaxis.set_visible(False)

plt.grid(True)
plt.show()
Posted by: Guest on August-06-2020

Code answers related to "matplotlib hide y axis tick labels"

Python Answers by Framework

Browse Popular Code Answers by Language