Description Usage Arguments Value Examples
View source: R/MethodEdgeRLRT.R
EdgeR LRT method
1 | MethodEdgeRLRT(count.table, design.matrix)
|
count.table |
count table |
design.matrix |
design matrix |
data.frame of differential gene expression quantification by EdgeR
1 2 3 4 5 6 7 8 | data("count.table")
ss <- data.frame("trt" = colnames(count.table))
rownames(ss) <- ss$trt
ss$trt <- as.integer(grepl("T",ss[,1]))
design <- model.matrix(~ss$trt)
EdgeR.LRT <- MethodEdgeRLRT(count.table = count.table, design.matrix = design)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.