aligned.IdMapBase {IdMappingAnalysis} | R Documentation |
Checks if two IdMapBase objects match on column names and primary ID set.
## S3 method for class 'IdMapBase' aligned(this, other, ...)
other |
The second ID Map object to check the matching against. |
... |
Not used. |
TRUE
if two IdMapBase objects are matching, otherwise FALSE
.
Alex Lisovich, Roger Day
For more information see IdMapBase
.
obj1<-IdMapBase(examples$identDfList[[1]]); obj2<-IdMapBase(examples$identDfList[[2]]); aligned(obj1,obj2); obj3<-IdMapBase(obj1[1:10,]); DF<-cbind(obj1[1:10,1],obj2[1:10,2]); colnames(DF)<-colnames(obj3); obj4<-IdMapBase(DF); aligned(obj3,obj4);