CsvList.merge.Misc: Pairwise merge of two string vectors

Description Usage Arguments Value Author(s) See Also Examples

Description

Pairwise merge of two string vectors.

Usage

1
2
3
4
5
6
## Static method (use this):
## Misc$CsvList.merge(s1, s2, mergeOp, asStrings=TRUE, ...)

## Don't use the below:
## S3 method for class 'Misc'
CsvList.merge(static, s1, s2, mergeOp, asStrings=TRUE, ...)

Arguments

s1

First string vector.

s2

Second string vectors.

mergeOp

Merging operation (intersect, setdiff etc.)

asStrings

If TRUE (default), convert the resulting string vector into the vector of comma separated strings.

...

Not used

Value

If asStrings=TRUE, the vector of comma separated strings representing the merging results, and if asStrings=FALSE, then result is a matrix of strings where each row represents the pairwise merge.

Author(s)

Alex Lisovich, Roger Day

See Also

For more information see Misc.

Examples

1
2
 mrg<-Misc$CsvList.merge(c("a","b"),c("d","f"),mergeOp=union);
 

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