aligned.IdMapBase: Checks if two IdMapBase objects match on column names and...

Description Usage Arguments Value Author(s) See Also Examples

Description

Checks if two IdMapBase objects match on column names and primary ID set.

Usage

1
2
## S3 method for class 'IdMapBase'
aligned(this, other, ...)

Arguments

other

The second ID Map object to check the matching against.

...

Not used.

Value

TRUE if two IdMapBase objects are matching, otherwise FALSE.

Author(s)

Alex Lisovich, Roger Day

See Also

For more information see IdMapBase.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 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);
 

IdMappingAnalysis documentation built on Oct. 31, 2019, 3:30 a.m.