Suchergebnisse für Anfrage "mplot3d"

4 die antwort

Wie beschneide ich ein Axes3D-Diagramm mit quadratischem Seitenverhältnis?

Hier ist ein Beispiel für Barebones: import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() f = fig.add_subplot(2, 1, 1, projection='3d') t = fig.add_subplot(2, 1, 2, projection='3d') # axes for d in {f, t}: ...

2 die antwort

Ist es möglich, 3D-Balkendiagramme in matplotlib einzublenden?

Im Wesentlichen eine 3D-Version davon:Plotten Sie zwei Histogramme gleichzeitig mit matplotlib [https://stackoverflow.com/questions/6871201/plot-two-histograms-at-the-same-time-with-matplotlib] Obwohl ich nicht weiß, wie es geht, da ich Axes 3d ...

4 die antwort

Surface und 3D-Kontur in matplotlib

Ich möchte eine Oberfläche mit einer Farbkarte, einem Drahtmodell und Konturen mit @ zeichnematplotlib. Etwas wie das [/imgs/uy6g1.png] Bitte beachten Sie, dass ich nicht nach den Konturen frage, die in der Ebene parallel zu xy liegen, sondern ...

TOP-Veröffentlichungen

2 die antwort

Hintergrundbild zum 3D-Plot hinzufügen

Dieses Thema wurde berührtHie [https://stackoverflow.com/questions/23785408/3d-cartopy-similar-to-matplotlib-basemap] , es wurden jedoch keine Hinweise zum Erstellen eines 3D-Diagramms und zum Einfügen eines Bilds in das @ gegebe(x,y) Flugzeug, ...

2 die antwort

matplotlib 3D-Achsen Ticks, Labels und LaTeX

Ich renneDie [http://matplotlib.org/examples/mplot3d/lines3d_demo.html] Beispielskript mit folgenden Änderungen: import matplotlib as mpl from mpl_toolkits.mplot3d import Axes3D import numpy as np import matplotlib.pyplot as plt ...

2 die antwort

Matplotlib 3D-Plot: Wie der übermäßige Leerraum loswerden?

Wenn ich in Matplotlib eine 3D-Zeichnung mache: from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = fig.gca(projection='3d') x_labels = [10,20,30] x = [1,2,3,4] y = [3,1,5,1] legend = False for label in x_labels: x_3d = ...

2 die antwort

Versuche, multivariate Funktionen in der 3D-Matplotlib zu zeichnen; gibt leere Zahl @ zurü

Ich versuche, eine Funktion F (x1, x2) in der 3D-Matplotlib zu zeichnen, und folge von hier aus einem ...