请考虑以下图片。如何在 x轴编号和标签之间建立距离?
按照以下步骤创建图。
代码的结构大致如下:
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');
答案 0 :(得分:1)
您可以为labelpad
自变量指定一个选择的值,如下所示。 y和z轴标签也可以这样做。
ax.set_xlabel('xxxxxxxxx', labelpad=10)