run_MRPP | R Documentation |
The run_MRPP
function is used to identify the association between
the community and environmental variables by average distance.
run_MRPP(
object,
level = c(NULL, "Kingdom", "Phylum", "Class",
"Order", "Family", "Genus",
"Species", "Strain", "unique"),
variable,
method = c("unifrac", "wunifrac", "GUniFrac", "bray", "dpcoa", "jsd"),
seedNum = 123,
alpha = 0.5)
object |
(Required). a |
level |
(Optional). character. Summarization
level (from |
variable |
(Required). character. grouping variable for test. |
method |
(Optional). character. Provide one of the currently supported
options. See
|
seedNum |
(Optional). numeric. specify seeds for reproduction (default: 123). |
alpha |
(Optional). numeric. the parameter for "GUniFrac" controlling weight on abundant lineages (default: 0.5). |
The run_MRPP
function is used to identify the association between
the community and environmental variables by average distance, applying the
distance in profile and calculating the delta statistic between community and
variable by permutation test to determine the significance. It can be applied
to both phyloseq::phyloseq
and SummarizedExperiment::SummarizedExperiment
object.
A MRPP model.
Created by Hua Zou (5/15/2022 Shenzhen China)
Mielke Jr, Paul W. "The application of multivariate permutation methods based on distance functions in the earth sciences." Earth-Science Reviews 31.1 (1991): 55-71.
## Not run:
# phyloseq object
data("Zeybel_2022_gut")
run_MRPP(Zeybel_2022_gut,
variable = "LiverFatClass",
method = "bray")
# SummarizedExperiment object
data("Zeybel_2022_protein")
run_MRPP(Zeybel_2022_protein,
variable = "LiverFatClass",
method = "bray")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.