View source: R/Merge_methylation.R
differential_limma | R Documentation |
differential_limma
differential_limma(df, group, adjust.method = "BH")
df |
data.frame of the omic data |
group |
a vector, group of samples. |
adjust.method |
adjust.method. |
data.frame
df <- matrix(runif(200), 25, 8)
df <- as.data.frame(df)
rownames(df) <- paste0("gene", 1:25)
colnames(df) <- paste0("sample", 1:8)
group <- sample(c("group1", "group2"), 8, replace = TRUE)
result <- differential_limma(df = df, group = group)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.