UniquePairs$swapKeys {IdMappingAnalysis} | R Documentation |
Swap the primary and secondary key columns.
## Static method (use this): ## UniquePairs$swapKeys(uniquePairs, ...) ## Don't use the below: ## S3 method for class 'UniquePairs' swapKeys(static, uniquePairs, ...)
uniquePairs |
The UniquePairs object or a list of UniquePairs objects which keys to be swapped. |
... |
Not used. |
UniquePairs object or list of UniquePairs objects with swapped keys.
Alex Lisovich, Roger Day
pairs<-UniquePairs$create(examples$identDfList[[1]]); pairs[1:10,]; swapped_pairs<-UniquePairs$swapKeys(pairs); swapped_pairs[1:10,];