gpt4 book ai didi

python - 如何在 matplotlib 中将 y 轴设置为千位

转载 作者:太空宇宙 更新时间:2023-11-04 04:58:37 24 4
gpt4 key购买 nike

我有以下代码使用 Jupyter 在 Pytho 中创建一组 2 x 2 图。问题是第四个图(右下)的左 y 标签与第三个图的右 y 标签冲突。我试图将第四个图的左侧 y 标签的比例更改为数千,因此不会显示 -1000、0、1000 等,它只会显示 1、0、1,从而为标题提供足够的空间。我该怎么做?

按照我的代码:

    #Testing 2 x 2 plots for FO reporting

plt.figure(figsize=(15,9))

#First Plot

ax1=plt.subplot(2,2,1)
plt.title("Downhole Pressure")
ax1.plot(Time, Downhole_pressure, 'b', markersize=2, label="Downhole pressure")
plt.xlabel("Injection time", fontsize=10)
plt.xlim(0,80)
plt.ylabel("Pressure, (psi)", fontsize=10)
plt.ylim(6500,7500)
plt.legend(bbox_to_anchor=(.999,.89), prop={'size': 10})

ax2=ax1.twinx()
ax2.plot(Time, Slurry_rate,'m', markersize=2, label="Slurry")
ax2.plot(Time, Proppant_rate, 'g', markersize=2, label="Proppant")
plt.ylabel("Injection rate, (BPM))", fontsize=10)
plt.ylim(0,100)

plt.legend(bbox_to_anchor=(.879,.825), prop={'size': 10})

#Second Plot

ax1=plt.subplot(2,2,2)
plt.title("Fracture Width")
ax1.plot(Time, Max_Frac_Witdth, 'b', markersize=2, label="Max")
ax1.plot(Time, Mean_Frac_Width, 'r', markersize=2, label="Mean")
plt.xlabel("Injection time", fontsize=10)
plt.xlim(0,80)
plt.ylabel("Fracture width, (mm)", fontsize=10)
plt.ylim(0,10)
plt.legend(bbox_to_anchor=(.84,.89), prop={'size': 10})

ax2=ax1.twinx()
ax2.plot(Time, Slurry_rate,'m', markersize=2, label="Slurry")
ax2.plot(Time, Proppant_rate, 'g', markersize=2, label="Proppant")
plt.ylabel("Injection rate, (BPM))", fontsize=10)
plt.ylim(0,100)
plt.legend(bbox_to_anchor=(.879,.775), prop={'size': 10})

#Third Plot

ax1=plt.subplot(2,2,3)
plt.title("Fracture Height")
ax1.plot(Time, Max_Frac_Ver_Pos, 'b', markersize=2, label="Max")
ax1.plot(Time, Min_Frac_Ver_Pos, 'r', markersize=2, label="Min")
ax1.plot(Time, Frac_Ver_Height, 'darkblue', markersize=2, label="Fracture Vertical Height")
plt.xlabel("Injection time", fontsize=10)
plt.xlim(0,80)
plt.ylabel("Fracture Vertical Position (ft)", fontsize=10)
plt.ylim(-200,400)
plt.legend(bbox_to_anchor=(.99,.6), prop={'size': 10})

ax2=ax1.twinx()
ax2.plot(Time, Slurry_rate,'m', markersize=2, label="Slurry")
ax2.plot(Time, Proppant_rate, 'g', markersize=2, label="Proppant")
plt.ylabel("Injection rate, (BPM))", fontsize=10)
plt.ylim(0,100)
plt.legend(bbox_to_anchor=(.82,.775), prop={'size': 10})

#Fourth Plot

ax1=plt.subplot(2,2,4)
plt.title("Fracture Length")
ax1.plot(Time, Max_Frac_Trans_Pos, 'b', markersize=2, label="Max")
ax1.plot(Time, Min_Frac_Trans_Pos, 'r', markersize=2, label="Min")
ax1.plot(Time, Frac_Trans_Length, 'darkblue', markersize=2, label="Fracture Transversal Length")
plt.xlabel("Injection time", fontsize=10)
plt.xlim(0,80)
plt.ylabel("Fracture Transversal Position (ft)", fontsize=10)

plt.ticklabel_format(style='sci', axis='x', scilimits=(-2e3,3e3)) #tried, didn't work
#plt.ylim(-2e3,3e3) #tried, didn't work

plt.legend(bbox_to_anchor=(.99,.6), prop={'size': 10})

ax2=ax1.twinx()
ax2.plot(Time, Slurry_rate,'m', markersize=2, label="Slurry")
ax2.plot(Time, Proppant_rate, 'g', markersize=2, label="Proppant")
plt.ylabel("Injection rate, (BPM))", fontsize=10)
plt.ylim(0,100)
plt.legend(bbox_to_anchor=(.82,.775), prop={'size': 10})

plt.savefig('side-by-side_09.png', dpi=300)
#plt.show()
plt.gcf().clear()
plt.close('all')

在此先感谢您的帮助!

最佳答案

为了给标题留出足够的空间,你可以添加一行

plt.tight_layout()

保存图之前。它将优化轴的位置。

要更改轴的偏移量,使 yticks 显示 1、-1,请使用

plt.ticklabel_format(useOffset=1000)

关于python - 如何在 matplotlib 中将 y 轴设置为千位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46414190/

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