“Comment éliminer l'axe dans Matplotlib” Réponses codées

supprimer l'axe dans un tracé python

plt.axis('off')
Bored Coder

Matplotlib Retirez l'étiquette de l'axe Y

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

PLT hors de l'axe

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

Comment éliminer l'axe dans 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

Réponses similaires à “Comment éliminer l'axe dans Matplotlib”

Questions similaires à “Comment éliminer l'axe dans Matplotlib”

Plus de réponses similaires à “Comment éliminer l'axe dans Matplotlib” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code