nonmatched | R Documentation |
Features that lack a any counterparts in the complementary dataset may be obtained from this method. If data is set to "x" or "y", will retrieve data from the current X or Y dataset, respectively. If data is set to NULL, will retrieve the list of nonmatched features.
nonmatched(object, data = "x")
## S4 method for signature 'metabCombiner'
nonmatched(object, data = "x")
object |
metabCombiner object |
data |
dataset identifier for |
Data frame of non-matched features corresponding to data argument
data(plasma30)
data(plasma20)
p30 <- metabData(head(plasma30,500), samples = "CHEAR")
p20 <- metabData(head(plasma20,500), samples = "Red", rtmax = 17.25)
p.comb <- metabCombiner(xdata = p30, ydata = p20, binGap = 0.005)
nnmx <- nonmatched(p.comb, data = "x")
nnmy <- nonmatched(p.comb, data = "y")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.