plot_pairwise_comparison | R Documentation |
Creates a heatmap of the ratios or pvalues from a pairwise comparison between models
plot_pairwise_comparison( comparison_result, type = c("mean_scores_ratio", "pval", "together"), smaller_is_good = TRUE )
comparison_result |
A data.frame as produced by
|
type |
character vector of length one that is either "mean_scores_ratio", "pval", or "together". This denotes whether to visualise the ratio or the p-value of the pairwise comparison or both. Default is "mean_scores_ratio". |
smaller_is_good |
logical (default is |
library(ggplot2) df <- data.frame( model = rep(c("model1", "model2", "model3"), each = 10), id = rep(1:10), interval_score = abs(rnorm(30, mean = rep(c(1, 1.3, 2), each = 10))), ae_median = (abs(rnorm(30))) ) scores <- score(example_quantile) pairwise <- pairwise_comparison(scores, by = "target_type") plot_pairwise_comparison(pairwise) + facet_wrap(~target_type)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.