A barplot to visualize which taxa have had the greatest impact on the overall gut composition.

top_coefficients_barplot(top_coefficients, title = NULL)

Arguments

top_coefficients

Coefficients for the top taxa separating the groups.

title

The title of the plot, Default = NULL

Value

Returns a barplot of the top coefficients

See also

Examples

# NOT RUN {
if (interactive()) {
  library(MicrobiomeR)
  data <- analyzed_silva
  p <- permanova(obj = data)
  top_coefficients_barplot(p$top_coefficients)
}
# }