| plot_interaction_heatmap {mistyR} | R Documentation |
Generate a heatmap with importances of predictor-target interaction.
plot_interaction_heatmap(misty.results, view, cutoff = 1, clean = FALSE)
misty.results |
a results list generated by
|
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. |
clean |
a |
The misty.results list (invisibly).
collect_results() to generate
a results list from raw results.
Other plotting functions:
plot_contrast_heatmap(),
plot_contrast_results(),
plot_improvement_stats(),
plot_interaction_communities(),
plot_view_contributions()
all.samples <- list.dirs("results", recursive = FALSE)
collect_results(all.samples) %>%
plot_interaction_heatmap("intra") %>%
plot_interaction_heatmap("para.10", cutoff = 0.5)