datasets | R Documentation |
Each dataset in a metabCombiner
object is represented by
a character identifier. The datasets slot contains all these ids in a single
vector, which can be obtained in sequential order with this accessor method
datasets(object, list = FALSE) ## S4 method for signature 'metabCombiner' datasets(object, list = FALSE)
object |
metabCombiner object |
list |
logical, option to return in list format (TRUE) vs character vector format (FALSE) |
character vector of dataset identifiers
#' @examples data(plasma30) data(plasma20) p30 <- metabData(head(plasma30,500), samples = "CHEAR") p20 <- metabData(head(plasma20,500), samples = "Red") p.comb <- metabCombiner(p30, p20, xid = "p30", yid = "p20") ##datasets extraction: expect "p30", "p20" sets <- datasets(p.comb, list = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.