python中的3D图,x-ticks和标签之间的空间

时间:2019-07-12 14:09:18

标签: python matplotlib

请考虑以下图片。如何在 x轴编号和标签之间建立距离?

enter image description here

按照以下步骤创建图。

代码的结构大致如下:

import matplotlib.pyplot as plt
from mpl_toolkits import mplot3d; 


ax = plt.axes(projection='3d')
ax.plot_surface(X, Y, Z, rstride=1, cstride=1,
               cmap='viridis')
ax.set_title('surface');

1 个答案:

答案 0 :(得分:1)

您可以为labelpad自变量指定一个选择的值,如下所示。 y和z轴标签也可以这样做。

ax.set_xlabel('xxxxxxxxx', labelpad=10)