我在复制一篇论文的结果,我偶然发现了这个用这些颜色绘制的图。我想重现这个情节,但我不知道怎么做。
x1c 0d1x的数据
以下是我的当前代码:
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
x = np.array(range(0, 16), float)
y = x.copy()
xpos, ypos = np.meshgrid(x, y)
z = np.array(m).reshape(-1)
xpos = xpos.flatten()
ypos = ypos.flatten()
zpos = np.zeros_like(xpos)
dx = 0.75 * np.ones_like(zpos)
dy = dx.copy()
dz = z.flatten() # This is the actual data.
fig = plt.figure()
ax = fig.add_subplot(111,projection = '3d')
ax.bar3d(xpos, ypos, zpos, dx, dy, dz,
shade=True
)
title = titles[t]
t += 1
ax.title.set_text(r"{w}".format(w=title))
plt.show()
字符串
其输出以下曲线图:
的
我应该添加/更改哪些参数,使其看起来像论文中的图?
1条答案
按热度按时间v9tzhpje1#
从其他几个答案(如here和here)中得出的结果应该更接近这个数字
字符串
的数据