A function for getting multiple heat_tree plots per rank.
get_heat_tree_plots(obj, rank_list = NULL, ...)
| obj | An object to be converted to a metacoder object with |
|---|---|
| rank_list | A vector of ranks used to generate heat_trees. Default: NULL |
| ... | Any of the |
A list of heat_tree plots.
object_handler, validate_MicrobiomeR_format, get_heat_tree_parameters
Other Visualizations: alpha_diversity_plot,
correlation_plot,
get_correlation_data,
get_correlation_plots,
get_heat_tree_parameters,
get_plot_limits,
melt_metacoder,
ordination_plot,
save_barplot,
save_correlation_plots,
save_heat_tree_plots,
save_ordination_plots,
top_coefficients_barplot
# NOT RUN { if(interactive()){ # This example uses data that are no longer available in the MicrobiomeR package, # however, they can be easily generated with \code{\link{MicrobiomeR}{as_analyzed_format}}. library(MicrobiomeR) analyzed_silva <- as_MicrobiomeR_format(MicrobiomeR::raw_silva_2, "analyzed_format") h_trees <- get_heat_tree_plots(analyzed_silva, rank_list = c("Phylum", "Class")) h_trees$Class } # }