fig,ax=plt.subplots()ax.plot([1,2,3,4],[1,4,2,3],label='Data from how2matplotlib.com')# 设置x轴标签在不同位置ax.set_xlabel('X-axis')ax.xaxis.set_label_coords(0.5,-0.1)# 默认位置ax.xaxis.set_label_coords(0,-0.1)# 左对齐ax.xaxis.set_label_coords(1,-0.1)# ...
importmatplotlib.pyplotaspltimportnumpyasnp# 创建数据x=np.linspace(0,2*np.pi,100)y=np.sin(x)# 创建图表fig,ax=plt.subplots()# 绘制sin函数ax.plot(x,y,label='sin(x)')# 设置x轴标签和刻度位置ax.set_xlabel('X轴 - how2matplotlib.com')ax.xaxis.set_label_position('top')ax.x...
importmatplotlib.pyplotasplt# 创建一个简单的折线图plt.figure(figsize=(8,6))plt.plot([1,2,3,4],[1,4,2,3],label='how2matplotlib.com')# 获取当前坐标轴对象ax=plt.gca()# 设置x轴标签位置为顶部ax.xaxis.set_label_position('top')plt.xlabel('X Axis (how2matplotlib.com)')# ...