I use 'xarray' to read nc file and plot a figure. I achieved the figure, but I don't know how to modify the title of the figure. Please see the code below.
import xarray as xr
ds = xr.open_dataset('/users/james/Downloads/_data2/test2.nc')
ds['u10'].sel(latitude=-1.3,longitude=50.7,method='nearest').plot()
I hope someone could help me, thank you!