R/mod.oneway.test.R

Defines functions mod.oneway.test

Documented in mod.oneway.test

mod.oneway.test <- function(x, group, repeated = FALSE, subject, 
                            adjust.method = "BH", sort.by = "none"){
  if(missing(x)) stop("'x' is missing")
  if(!is.matrix(x)) stop("'x' must be a matrix")
  if(missing(group)) stop("'group' is missing")
  if(!is.factor(group)) group <- factor(group)
  if(ncol(x) != length(group))
    stop("length of group must be equal to ncol(x)")

  nlev <- nlevels(group)
  if(nlev < 3)
    stop("'group' has less than three levels, use 'mod.t.test' instead")

  group.tmp <- factor(group, labels = LETTERS[1:nlev])
  if(repeated){
    if(!is.factor(subject))  subject <- factor(subject)
    design <- model.matrix(~ group.tmp + subject)
    #    colnames(design) <- levels(group.tmp)
    fit1 <- lmFit(x, design)
    fit2 <- eBayes(fit1)
    res <- topTable(fit2, coef = 2:(2+nlevels(group.tmp)), 
                     adjust.method = adjust.method, 
                     number = Inf, sort.by = sort.by)
    res <- res[,c("AveExpr", "F", "P.Value", "adj.P.Val")]
    names(res) <- c("grand mean", "F", "p.value", "adj.p.value")
  }else{
    design <- model.matrix(~ 0 + group.tmp)
    colnames(design) <- levels(group.tmp)
    fit1 <- lmFit(x, design)
    combs <- apply(combn(levels(group.tmp), 2), 2, paste0, collapse = "-")
    cont.matrix <- makeContrasts(contrasts = combs, levels=design)
    fit2 <- contrasts.fit(fit1, cont.matrix)
    fit3 <- eBayes(fit2)
    res <- topTableF(fit3, adjust.method = adjust.method, number = Inf,
                     sort.by = sort.by)
    levs <- levels(group)
    combs <- apply(combn(levs, 2), 2, paste0, collapse = " vs ")
    names(res) <- c(combs, "grand mean", "F", "p.value", "adj.p.value")
  }
  res
}

Try the MKomics package in your browser

Any scripts or data that you put into this service are public.

MKomics documentation built on Aug. 8, 2021, 5:06 p.m.