You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there is a valley between glaciers distribution regions, the column of hypso_df in the example of glacier hypsometry will be out of order, which result in the yaxis of the figure in chaos.
In my opinion, add a step of sorting before the plot :
If there is a valley between glaciers distribution regions, the column of hypso_df in the example of glacier hypsometry will be out of order, which result in the yaxis of the figure in chaos.
In my opinion, add a step of sorting before the plot :
hypso_df = hypso_df.reindex(sorted(hypso_df.columns, key=int), axis=1)
The text was updated successfully, but these errors were encountered: