z_diversity | R Documentation |
This function calculates Zeta diversity for each group in the provided otutab.
This function plots the Zeta diversity results obtained from the z_diversity function.
z_diversity(otutab, group_df = NULL, zetadiv_params = list())
## S3 method for class 'zeta_res'
plot(x, lm_model = c("exp", "pl")[1], ribbon = FALSE, text = TRUE, ...)
otutab |
A matrix or data frame containing OTU (Operational Taxonomic Unit) counts. |
group_df |
A data frame containing group information. |
zetadiv_params |
Additional parameters to be passed to the Zeta.decline.mc function from the zetadiv package. |
x |
Zeta diversity results obtained from z_diversity function. |
lm_model |
The linear model to be used for fitting ('exp' or 'pl'). |
ribbon |
Logical, whether to add a ribbon to the plot for standard deviation. |
text |
Logical, whether to add R-squared and p-value text annotations. |
... |
Additional arguments to be passed to ggplot2 functions. |
zeta_res
A ggplot object.
if (requireNamespace("zetadiv")) {
data(otutab, package = "pcutils")
zeta_result <- z_diversity(otutab, metadata["Group"], zetadiv_params = list(sam = 10))
plot(zeta_result, lm_model = "exp", text = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.