Description Usage Arguments Value Examples
Features that lack a any counterparts in the complementary dataset may be obtained from this method.
1 2 3 4 | nonmatched(object, data = c("x", "y"))
## S4 method for signature 'metabCombiner'
nonmatched(object, data = c("x", "y"))
|
object |
metabCombiner object |
data |
Either one of 'x' or 'y', specifying which dataset's nonmatched features to return. |
If data is "x", returns non-matched X features ; if "y", returns non-matched Y features
1 2 3 4 5 6 7 8 9 | data(plasma30)
data(plasma20)
p30 <- metabData(plasma30, samples = "CHEAR")
p20 <- metabData(plasma20, 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.