plot_contrast_heatmap {mistyR} | R Documentation |
The heatmap shows the interactions that are present and have importance above
a cutoff
value in the to.view
but but not in the from.view
.
plot_contrast_heatmap(misty.results, from.view, to.view, cutoff = 1)
misty.results |
a results list generated by
|
from.view, to.view |
abbreviated name of the view. |
cutoff |
importance threshold. Importances below this value will be colored white in the heatmap and considered as not relevant. |
The misty.results
list (invisibly).
collect_results()
to generate a
results list from raw results.
Other plotting functions:
plot_contrast_results()
,
plot_improvement_stats()
,
plot_interaction_communities()
,
plot_interaction_heatmap()
,
plot_view_contributions()
all.samples <- list.dirs("results", recursive = FALSE) misty.results <- collect_results(all.samples) misty.results %>% plot_contrast_heatmap("intra", "para.10") misty.results %>% plot_contrast_heatmap("intra", "para.10", cutoff = 0.5)