Answers for "plt.axis('off')"

1

plot image without axes python

plt.axis('off')
Posted by: Guest on March-18-2020
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