Answers for "python plot no axis"

1

pyplot not show axis

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
0

plot python y axis off

plt.yticks([])  # Command for hiding y-axis
Posted by: Guest on May-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language