Skip to content

Commit

Permalink
finalised script, produce and save all tables
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeBatch committed Sep 9, 2020
1 parent c944108 commit ec78af5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/ci_plots_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,10 @@

# --------------------------------------------------------------------
# correlation, and p-value of ci width against percentile
mult_runs_corr_p_val_ciwidth_percentile[f'{dataset}_{cf}'][model] = \
np.round(pearsonr(flipped_cumulrmse_sdt, confidence_percentiles), 3)
corr, p_val = pearsonr(flipped_cumulrmse_sdt, confidence_percentiles)
corr = round(corr, 3)
p_val = round(p_val, 5)
mult_runs_corr_p_val_ciwidth_percentile[f'{dataset}_{cf}'][model] = [corr, p_val]

######################################################################

Expand Down

0 comments on commit ec78af5

Please sign in to comment.