We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change this condition so that it does not always evaluate to true; some subsequent code is never executed.:
yearmonth = True if yearmonth: # on unique year+month combinations Change this condition so that it does not always evaluate to true; some subsequent code is never executed. data_xr_monthmean = data_frommap_merged.resample(time='MS').mean(dim='time') else: #on unique month numbers data_xr_monthmean = data_frommap_merged.groupby('time.month').mean() data_xr_monthmean = data_xr_monthmean.rename({'month':'time'})
The text was updated successfully, but these errors were encountered:
3343f81
No branches or pull requests
Change this condition so that it does not always evaluate to true; some subsequent code is never executed.:
The text was updated successfully, but these errors were encountered: