“So entfernen Sie die Achse in Matplotlib” Code-Antworten

Entfernen Sie die Achse in einem Python -Diagramm

plt.axis('off')
Bored Coder

Matplotlib Yexis -Etikett entfernen

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

PLT von der Achse

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

So entfernen Sie die Achse in 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

Ähnliche Antworten wie “So entfernen Sie die Achse in Matplotlib”

Fragen ähnlich wie “So entfernen Sie die Achse in Matplotlib”

Weitere verwandte Antworten zu “So entfernen Sie die Achse in Matplotlib” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen