Skip to content

Commit

Permalink
change rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Jul 24, 2023
1 parent 99b08a2 commit 992215a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions notebooks/wp4/clima_and_bias_cordex_cmip6_regionalised.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@
"df_stats_and_error = df_stats_and_error.reindex(\n",
" columns=[\"ERA5\", collection_id] + models\n",
")\n",
"tickRMS = np.linspace(0, df_stats_and_error.loc[\"crmse\"].max(), 5).round(2)\n",
"tickSTD = np.linspace(0, df_stats_and_error.loc[\"std\"].max(), 5).round(2)\n",
"tickRMS = np.linspace(0, df_stats_and_error.loc[\"crmse\"].max(), 5).round(1)\n",
"tickSTD = np.linspace(0, df_stats_and_error.loc[\"std\"].max(), 5).round(1)\n",
"skill_metrics.taylor_diagram(\n",
" df_stats_and_error.loc[\"std\"].values,\n",
" df_stats_and_error.loc[\"crmse\"].values,\n",
Expand Down
4 changes: 2 additions & 2 deletions notebooks/wp4/trend_cordex_cmip6.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -899,8 +899,8 @@
"df_stats_and_error = df_stats_and_error.reindex(\n",
" columns=[\"ERA5\", collection_id] + models\n",
")\n",
"tickRMS = np.linspace(0, df_stats_and_error.loc[\"crmse\"].max(), 5).round(2)\n",
"tickSTD = np.linspace(0, df_stats_and_error.loc[\"std\"].max(), 5).round(2)\n",
"tickRMS = np.linspace(0, df_stats_and_error.loc[\"crmse\"].max(), 5).round(1)\n",
"tickSTD = np.linspace(0, df_stats_and_error.loc[\"std\"].max(), 5).round(1)\n",
"skill_metrics.taylor_diagram(\n",
" df_stats_and_error.loc[\"std\"].values,\n",
" df_stats_and_error.loc[\"crmse\"].values,\n",
Expand Down

0 comments on commit 992215a

Please sign in to comment.