📜  设置轴标签 python 代码示例

📅  最后修改于: 2022-03-11 14:45:40.695000             🧑  作者: Mango

代码示例2
fig = plt.figure()
ax = fig.add_subplot(...)

ax.set_title('Title Here')

ax.set_xlabel('x label here')
ax.set_ylabel('y label here')
ax.set_zlabel('z label here')