as.data.frame.pareg | R Documentation |
pareg
.Retrieve dataframe with enrichment information.
## S3 method for class 'pareg'
as.data.frame(x, row.names = NULL, optional = FALSE, ...)
x |
An object of class |
row.names |
Optional character vector of rownames. |
optional |
Allow optional arguments. |
... |
Additional arguments. |
Dataframe containing enrichment score and name for each pathway.
df_genes <- data.frame(
gene = paste("g", 1:20, sep = ""),
pvalue = c(
rbeta(10, .1, 1),
rbeta(10, 1, 1)
)
)
df_terms <- rbind(
data.frame(
term = "foo",
gene = paste("g", 1:10, sep = "")
),
data.frame(
term = "bar",
gene = paste("g", 11:20, sep = "")
)
)
fit <- pareg(df_genes, df_terms, max_iterations = 10)
as.data.frame(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.