欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【python】画三维散点图Axes3D

程序员文章站 2022-07-13 10:39:17
...
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

points = np.load(path)
print(points.shape) # (N, 3)
fig = plt.figure()
ax = Axes3D(fig)
ax.scatter(points[...,0], points[...,1], points[...,2], cmap='spectral', c='r', label='airplane')
plt.show()

【python】画三维散点图Axes3D

相关标签: Python