append-methods {flowFP} | R Documentation |
This method joins one or more flowFP
objects into a
flowFPPlex
. Conceptually, each instance's fingerprint feature
vector is extended. An error will occur if the sample names and the class
names differ. If we imagine the fingerprints as a matrix where columns are
features and the rows are instances, this method binds the columns
onto the existing fingerprint matrix.
These methods append one or more fingerprints into a flowFPPlex.
append(x, values, after=length(x))
flowFPPlex
methods:
Appends a fingerprint onto a flowFPPlex.
Appends a list of fingerprints to a flowFPPlex.
Combines two flowFPPlex-es into one.
Herb Holyst <holyst@mail.med.upenn.edu>, Wade Rogers <rogersw@mail.med.upenn.edu>
flowFPPlex sampleNames sampleClasses
data(fs1) fp1 = flowFP(fs1, name="fingerprint 1") fp2 = flowFP(fs1, name="fingerprint 2") plex = flowFPPlex(fp1) plex = append(plex, fp2) plex