“Pyplot no muestra el eje” Código de respuesta

Pyplot no muestra el eje

plt.axis('off')
Bored Coder

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

Respuestas similares a “Pyplot no muestra el eje”

Preguntas similares a “Pyplot no muestra el eje”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código