nonmatched {metabCombiner} | R Documentation |
Features that lack a any counterparts in the complementary dataset may be obtained from this method.
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
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")