Description Usage Arguments Value Author(s) Examples
View source: R/topTable.merge.R
Take a list of topTable dataframes and consolidate output for specified columns. Optionally output as an Excel spreadsheet. Should work on any named list of dataframes where each member of the list has the same columns.
1 2 3 4 5 | topTable.merge(
ttlist,
colNames = c("logFC", "AveExpr", "P.Value", "adj.P.Val"),
digits = c(2, 2, 4, 3)
)
|
ttlist |
A named list of topTable data.frames which all have the same colnames and same row counts. The dataframes in the list should have rownames (geneIDs). |
colNames |
The list of column names of the data column to extract to a matrix (Default = c("logFC", "AdeExpr", "P.Value", "adj.P.Val")) |
digits |
Number of decimal places for specified columns. Should be same length as colNames.(Default = c(2, 2, 4, 3)). If one value supplied, it is used for all columns. |
A matrix containing the extracted columns
John Thompson, john.thompson@bms.com
1 | MyContrastTable = topTable.merge (topTablelist)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.