gpt4 book ai didi

python - 在 python 中生成 3d 图很容易,但我似乎不知道如何在 pdf 上显示 3d 图

转载 作者:行者123 更新时间:2023-12-01 05:28:08 25 4
gpt4 key购买 nike

这是代码:

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

data = [[1.3, 125, 0.0152093 ],
[1.3, -40, 0.00864026],
[3.6, 125, 0.0226226 ],
[3.6, -40, 0.0221346 ],
[5.5, 125, 0.0400638 ],
[5.5, -40, 0.0417146 ],
[1.1, 125, 0.053118 ],
[1.65, 125, 0.0631874 ],
[2.3, 125, 0.0828577 ]]


x, y, z = zip(*data)

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x,y,z)
ax.set_title("Process: FF")
ax.set_xlabel('Voltage')
ax.set_ylabel('Temperature')
ax.set_zlabel('Power value')

#ax.plot_wireframe(x, y, z, rstride=10, cstride=10)

plt.show()
plt.savefig('example01.pdf')

请帮我将 3d 图形保存为 pdf 格式。

最佳答案

来自the savefig() docs ,

plt.savefig('example01.pdf', format='pdf')

应该可以工作。

关于python - 在 python 中生成 3d 图很容易,但我似乎不知道如何在 pdf 上显示 3d 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20942914/

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