“como remover o eixo em matplotlib” Respostas de código

Remova o eixo em um gráfico de Python

plt.axis('off')
Bored Coder

matplotlib remover o rótulo do eixo y

ax.axes.xaxis.set_ticklabels([])
Careful Cassowary

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

como remover o eixo em matplotlib

for i in range(len(COLUMNS)):
    for j in range(len(COLUMNS)):
        # If on the upper triangle
        if i < j:
            axes[i, j].remove()

# See the chart now
fig
DON-PECH

Respostas semelhantes a “como remover o eixo em matplotlib”

Perguntas semelhantes a “como remover o eixo em matplotlib”

Mais respostas relacionadas para “como remover o eixo em matplotlib” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código