I have downloaded a CRU dataset as follows;
data = netCDF4.Dataset('cru_ts4.04.2011.2019.tmn.dat.nc')
print(data.variables.keys())
dict_keys(['lon', 'lat', 'time', 'tmn', 'stn'])
The time
variable has 108 entries given by 12 months times 9 years. Is it possible to relabel them as month_year format, for e.g. Jan_2011, Feb_2012 etc. Kindly advise