“Pyplot não mostra o eixo” Respostas de código

Pyplot não mostra o eixo

plt.axis('off')
Bored Coder

PLT Off Eixo

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')
GentleMan Liu

Respostas semelhantes a “Pyplot não mostra o eixo”

Perguntas semelhantes a “Pyplot não mostra o eixo”

Procure respostas de código populares por idioma

Procurar outros idiomas de código