Skip to contents

Plots a heatmap of correlations between different metrics

Usage

plot_correlation(correlations)

Arguments

correlations

A data.table of correlations between scores as produced by correlation().

Value

A ggplot2 object showing a coloured matrix of correlations between metrics

Examples

scores <- score(example_quantile)
#> The following messages were produced when checking inputs:
#> 1.  144 values for `prediction` are NA in the data provided and the corresponding rows were removed. This may indicate a problem if unexpected.
correlations <- correlation(
 summarise_scores(scores)
)
plot_correlation(correlations)