Answers for "how to remove tick marks in matplotlib"

0

matplotlib remove ticks and lines

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([1],[1])
ax.tick_params(axis=u'both', which=u'both',length=0)
plt.show()
Posted by: Guest on April-07-2020

Code answers related to "how to remove tick marks in matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language