我想在3D图的轴旁边绘制直方图(类似于3D图像)x1c 0d1x
x = np.random.randn(1000)
y = np.random.randn(1000)
z = np.random.randn(1000)
fig = plt.figure(figsize = (10,10))
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x, y, z, s = 1, color='black')
查看文档(https://matplotlib.org/3.1.1/gallery/lines_bars_and_marker/scatter_hist.html#sphx-glr-gallery-lines-bars-and-markers-scatter-hist-py)我不知道如何外推到3d轴。
我有一个三维图,如下面的一个和直方图为每个轴,我想绘制旁边。
1条答案
按热度按时间uajslkp61#
对于图中的这种图,使用
seaborn.jointplot
你应该使用
plotly
和cufflinks
来创建3d绘图