Description Usage Arguments Value Author(s) See Also Examples
Merges the IdMap object (this) with a second IdMap object or a list of IdMap objects on secondary IDs (second column) usind the mergeOp and on row names using the rowMergeOp. the result is then ordered by the primary key of 'this' IdMap object. The method can be used as object specific as well as static. In the latter case the method merges the list of IdMap objects by using IdMap$merge(idMapSet) call signature.
1 2 |
idMapSet |
IdMap object or a list of ID Map objects to merge with. |
mergeOp |
merge operation (intersect, union etc) performed on the secondary ID list. |
rowMergeOp |
merge operation (intersect, union etc) performed on the rows of merged ID Maps. |
verbose |
if |
... |
Not used. |
An IdMap object containing the merge result.
Alex Lisovich, Roger Day
For more information see IdMap
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | obj1<-IdMap(examples$identDfList[[1]]);
obj2<-IdMap(examples$identDfList[[2]]);
#intersection
mergedObj<-merge(obj1,obj2,intersect);
rbind(dim(obj1),dim(obj2),dim(mergedObj));
#difference
mergedObj<-merge(obj1,obj2,setdiff);
rbind(dim(obj1),dim(obj2),dim(mergedObj));
#union using the static call
mergeObj<-IdMap$merge(examples$identDfList,union,verbose=TRUE);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.