我开发了一个python脚本,可以绘制来自netcdf文件的数据。问题是我尝试修改绘图的标题(在其他情况下,我也尝试使用ax.set_xlabel('etc')更改x轴标题),但是python似乎没有回答。 使用xarray提取数据,然后使用matplotlib绘制数据。 这是我的代码:
from os.path import expanduser
home = expanduser("~") # Get users home directory
file = home + '/Desktop/Tesi/Triennial_EOFs/' # Adjust if necessary
path = file + 'normevectortime1905_1.nc'
mask = xr.open_dataset(path, decode_times=False) #extract variables in xarray from .nc file
in_variable='msl'
var = mask[in_variable] #variable to study
ax = plt.subplot(1,1,1, projection=proj)
ax.set_title('PLOT')
ax.set_xlabel('x axes_test')
ax.coastlines(resolution='50m',linewidth=0.4)
var[0,:,:].plot.contourf(transform=crs.PlateCarree(),levels=20)
plt.show()
此外,我从未明确为颜色栏或与颜色栏附近的变量字段相关的文本编写代码行。而且我什至从未在情节的顶部写过书面指示。