gpt4 book ai didi

matplotlib - Matplotlib 3D绘图中的较深背景

转载 作者:行者123 更新时间:2023-12-04 16:40:13 24 4
gpt4 key购买 nike

我正在matplotlib中绘制以下图像。
我的问题是,图像看起来像这样,但是,我想使背景变暗,因为当我打印该图像时,灰度部分不会出现在打印物中。有人可以告诉我API进行此更改吗?

我使用简单的API绘制3D曲线-

ax.plot(X1, Y1, Z1, '^', c='r')
ax.plot(X2, Y2, Z2, 'o', c='b')

我还尝试过的是-
fig = plt.figure(figsize=(10,10))
ax = fig.gca(projection='3d', axisbg='gray')

这会将颜色更改为深灰色,但同时也会更改图像外部的颜色-

最佳答案

我通过使用以下代码实现了它-

ax = fig.add_subplot(111, projection='3d')
plt.gca().patch.set_facecolor('white')
ax.w_xaxis.set_pane_color((0.8, 0.8, 0.8, 1.0))
ax.w_yaxis.set_pane_color((0.8, 0.8, 0.8, 1.0))
ax.w_zaxis.set_pane_color((0.8, 0.8, 0.8, 1.0))

关于matplotlib - Matplotlib 3D绘图中的较深背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14334274/

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