gpt4 book ai didi

python - matplotlib 中轴的标签被刻度覆盖

转载 作者:行者123 更新时间:2023-11-30 22:57:50 25 4
gpt4 key购买 nike

如何更改图形的 z 轴标签位置。这就是我的身材。 enter image description here

这是我的代码:

import matplotlib.pyplot as plt
fig = plt.figure(figsize=(10,8))
ax = fig.gca(projection='3d') # get current axis
surf = ax.plot_surface(X, Y, Z)
ax.set_xlabel('Intercept')
ax.set_ylabel('Slope')
ax.set_zlabel('Error')

最佳答案

您可以使用labelpad参数:

plt.zlabel(*, labelpad=20)

或者您可以稍后更改它:

ax.zaxis.labelpad = 20

不断尝试直到它满足您的需求。

关于python - matplotlib 中轴的标签被刻度覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36448733/

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