Plot a sunburst

sunburst(tree)

Arguments

tree

result from ann_tree

Value

sunburst

See also

Examples

# \donttest{
if (requireNamespace("plotly")) {
  data(otutab, package = "pcutils")
  ann_tree(taxonomy[, c(1, 5, 6, 7)], otutab) -> tree
  sunburst(tree)
}
#> Loading required namespace: plotly
# }