小羊趴在云朵上 发表于 2022-9-19 16:54:23

Python绘图y轴刻度与图不在一起

同一个程序在一个电脑上绘制结果是可以的,但是另一个电脑上却出现了刻度与图不在一起的情况,想请问一下,该如何处理

ZhKQYu 发表于 2022-9-19 18:09:20

贴代码

阿奇_o 发表于 2022-9-19 18:14:31

应该是 不同系统或相关模块版本不同而选择的 默认配置, 存在一定差异吧。

小问题,小差异,无关紧要,能不改就不改。

小羊趴在云朵上 发表于 2022-9-19 21:31:09

ZhKQYu 发表于 2022-9-19 18:09
贴代码

ax1.set_xticks(np.linspace(-180, 180, 7))
ax1.set_xticks(np.arange(leftlon, rightlon, 10), minor = True, crs = tick_proj)
ax1.set_yticks(np.arange(lowerlat, upperlat + 10, 30), crs=tick_proj)
ax1.set_yticks(np.arange(lowerlat, upperlat, 10), minor = True, crs = tick_proj)
lon_formatter = cticker.LongitudeFormatter()
lat_formatter = cticker.LatitudeFormatter()
ax1.xaxis.set_major_formatter(lon_formatter)
ax1.yaxis.set_major_formatter(lat_formatter)
ax1.set_title('(a) SLP',loc='left',fontsize=15)
c1 = ax1.contour(lon, lat, slp ,levels=np.arange(-2.5, 2.5, 0.5),zorder=1, colors = 'k', transform=ccrs.PlateCarree())
ax1.clabel(c1, fontsize=12, fmt = '%.1f')
c2 = ax1.contour(lon, lat, slp,levels=0, colors='k',linewidths=2.3,linestyles='-',transform=ccrs.PlateCarree())
页: [1]
查看完整版本: Python绘图y轴刻度与图不在一起