Learn R Programming

flowFP (version 1.30.0)

append-methods: Methods to append flowFP fingerprints to a flowFPPlex

Description

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.

Arguments

Methods

append(x, values, after=length(x)) flowFPPlex methods:
x = "flowFPPlex", values = "flowFP", after = length(x@fingerprints)
Appends a fingerprint onto a flowFPPlex.
x = "flowFPPlex", values = "list", after = length(x@fingerprints)
Appends a list of fingerprints to a flowFPPlex.
x = "flowFPPlex", values = "flowFPPlex", after = length(x@fingerprints)
Combines two flowFPPlex-es into one.

Details

These methods append one or more fingerprints into a flowFPPlex.

See Also

flowFPPlex sampleNames sampleClasses

Examples

Run this code
	data(fs1)
	fp1 = flowFP(fs1, name="fingerprint 1")
	fp2 = flowFP(fs1, name="fingerprint 2")
	plex = flowFPPlex(fp1)
	plex = append(plex, fp2)
	plex

Run the code above in your browser using DataLab