gpt4 book ai didi

python - 以透视方式绘制以 3D 投影的一系列 2D 图

转载 作者:太空宇宙 更新时间:2023-11-04 00:58:08 28 4
gpt4 key购买 nike

我想绘制一个似然分布,基本上是一个 NxT 矩阵,其中每一行代表每个时间步 t (t=0...T) 中某个变量的分布,这样我就可以想象最大似然估计会产生的轨迹。

我想象几个 2D 图,一个在另一个之前 - 像这样:

please ignore the axis labels

到目前为止基于this我试过:

def TrajectoryPlot(P):
P=P[0:4]
fig = plt.figure()
ax = fig.gca(projection='3d')
def cc(arg):
return colorConverter.to_rgba(arg, alpha=0.6)
xs = np.arange(0, len(P[0]))
verts = []
zs = [0.0, 1.0, 2.0, 3.0, 4.0]
for i in range(len(P)):
print(i)
verts.append(list(zip(xs, P[i])))
poly = PolyCollection(verts, facecolors=[cc('r'), cc('g'), cc('b'),
cc('y')])
poly.set_alpha(0.7)
ax.add_collection3d(poly, zs=zs, zdir='y')
ax.set_xlabel('X')
ax.set_ylabel('Likelihood')
ax.set_zlabel('Time')
plt.show()

但这还行不通。

最佳答案

fill_between 例程还返回一个 PolyCollection 对象,因此您可以使用 fill_between 并使用 add_collection3d 添加它:

import matplotlib.pylab as pl
from mpl_toolkits.mplot3d import Axes3D
import numpy as np

x = np.linspace(1,5,100)
y1 = np.ones(x.size)
y2 = np.ones(x.size)*2
y3 = np.ones(x.size)*3
z = np.sin(x/2)

pl.figure()
ax = pl.subplot(projection='3d')
ax.plot(x, y1, z, color='r')
ax.plot(x, y2, z, color='g')
ax.plot(x, y3, z, color='b')

ax.add_collection3d(pl.fill_between(x, 0.95*z, 1.05*z, color='r', alpha=0.3), zs=1, zdir='y')
ax.add_collection3d(pl.fill_between(x, 0.90*z, 1.10*z, color='g', alpha=0.3), zs=2, zdir='y')
ax.add_collection3d(pl.fill_between(x, 0.85*z, 1.15*z, color='b', alpha=0.3), zs=3, zdir='y')

ax.set_xlabel('Day')
ax.set_zlabel('Resistance (%)')

enter image description here

关于python - 以透视方式绘制以 3D 投影的一系列 2D 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34099518/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com