- df1
The first dataframe to be bound.
- df2
The second dataframe to be bound.
- threshold
The maximum string distance between column names, if the distance
between columns is greater than this threshold the columns will not be bound.
- method
The type of string distance calculation to use. Possible methods
are : osa, lv, dl, hamming, lcs, qgram, cosine, jaccard, jw, and soundex.
See package stringdist for more information. Default: 'jw', Default: 'jw'
- q
Size of the q-gram used in string distance calculation. Default: 1
- p
Only used with method "jw", the Jaro-Winkler penatly size. Default: 0
- bt
Only used with method "jw" with p > 0, Winkler's boost threshold. Default: 0
- useBytes
Whether or not to perform byte-wise comparison. Default: FALSE
- weight
Only used with methods "osa" or "dl", a vector representing the
penalty for deletion, insertion, substitution, and transposition,
in that order. Default: c(d = 1, i = 1, t = 1)