Answers for "plt remove axis"

1

matplotlib remove y axis label

ax.axes.xaxis.set_ticklabels([])
Posted by: Guest on October-22-2021
0

plt off axis

from numpy import random
import matplotlib.pyplot as plt

data = random.random((5,5))
img = plt.imshow(data, interpolation='nearest')
img.set_cmap('hot')
plt.axis('off')
plt.savefig("test.png", bbox_inches='tight')
Posted by: Guest on September-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language