“Python de gráfico 3D” Código de respuesta

Gráfico 3D Python

fig = plt.figure(figsize=(4,4))

ax = fig.add_subplot(111, projection='3d')

ax.scatter(2,3,4) # plot the point (2,3,4) on the figure

plt.show()
Real Raven

Python de gráfico 3D

plot_trisurf(X, Y, ...)
plot_trisurf(X, Y, triangles, ...)
plot_trisurf(X, Y, triangles=triangles, ...)
Lazy Lynx

Python de gráfico 3D


ax.plot([0, 0], [0, 0], [0, 10])  # extend in z direction
ax.plot([0, 0], [0, 8], [0, 0])   # extend in y direction
ax.plot([0, 9], [0, 0], [0, 0])   # extend in x direction

Distinct Dogfish

Respuestas similares a “Python de gráfico 3D”

Preguntas similares a “Python de gráfico 3D”

Más respuestas relacionadas con “Python de gráfico 3D” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código