DA.mva | R Documentation |
Implementation of mvabund manyglm for DAtest
. With negative binomial family and an offset of log(LibrarySize) when relative = TRUE
DA.mva( data, predictor, paired = NULL, covars = NULL, relative = TRUE, p.adj = "fdr", coeff = 2, coeff.ref = 1, resamp = "montecarlo", allResults = FALSE, ... )
data |
Either a matrix with counts/abundances, OR a |
predictor |
The predictor of interest. Either a Factor or Numeric, OR if |
paired |
For paired/blocked experimental designs. Either a Factor with Subject/Block ID for running paired/blocked analysis, OR if |
covars |
Either a named list with covariables, OR if |
relative |
Logical. Whether |
p.adj |
Character. P-value adjustment. Default "fdr". See |
coeff |
Integer. The p-value and log2FoldChange will be associated with this coefficient. Default 2, i.e. the 2. level of the |
coeff.ref |
Integer. Reference level of the |
resamp |
Resample method for estimating p-values. Passed to |
allResults |
If TRUE will return raw results from the |
... |
Additional arguments for the |
A data.frame with with results.
# Creating random count_table and predictor set.seed(4) mat <- matrix(rnbinom(100, size = 0.1, mu = 500), nrow = 10, ncol = 10) rownames(mat) <- 1:10 pred <- c(rep("Control", 5), rep("Treatment", 5)) # Running mvabund manyglm res <- DA.mva(data = mat, predictor = pred)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.