Free Access Week-  Data Engineering + BI
Data engineering and BI courses are free!
Free AI Access Week from June 2-8

IdMappingAnalysis (version 1.16.0)

subsetData.JointUniquePairs: Subset data on a UniquePairsMatch object

Description

Subset data on a UniquePairsMatch object.

Usage

"subsetData"(this, data, expr, ...)

Arguments

data
numeric vector to subset. Should be of the same length as ncol(this).
expr
expression or a character string representing an expression according to which the indicator variable columns of match object will be combined to form the logical vector of data vector elements inclusion.
...
Not used

Value

See Also

For more information see JointUniquePairs.

Examples

Run this code
 #perform Wilcoxon test for EnVision/Affy corellation data
 data1<-examples$jointUniquePairs$subsetData(examples$corr$getData(),
		"EnVision_Q & !NetAffx_Q");
 data2<-examples$jointUniquePairs$subsetData(examples$corr$getData(),
           "!EnVision_Q & NetAffx_Q");
 wilcox<-wilcox.test(data1,data2);
 wilcox[names(wilcox)];
 

Run the code above in your browser using DataLab