phonetic {stringdist} | R Documentation |
Phonetic algorithms
Description
Translate strings to phonetic codes. Similar sounding strings should get similar or equal codes.
Usage
phonetic(x, method = c("soundex"), useBytes = FALSE)
Arguments
x |
a character vector whose elements are phonetically encoded. |
method |
name of the algorithm used. The default is |
useBytes |
Perform byte-wise comparison. |
Details
Currently, only the soundex algorithm is implemented. Note that soundex coding is only meaningful for characters in the ranges a-z and A-Z. Soundex coding of strings containing non-printable ascii or non-ascii characters may be system-dependent and should not be trusted. If non-ascii or non-printable ascii charcters are encountered, a warning is emitted.
Value
The returns value depends on the method used. However, all currently implemented methods return a character vector of the same length of the input vector. Output characters are in the system's native encoding.
References
The Soundex algorithm implemented is the algorithm used by the National Archives. This algorithm differs slightly from the original algorithm patented by R.C. Russell (US patents 1261167 (1918) and 1435663 (1922)).
See Also
printable_ascii
, stringdist-package
Examples
# The following examples are from The Art of Computer Programming (part III, p. 395)
# (Note that our algorithm is specified different from the one in TACP, see references.)
phonetic(c('Euler','Gauss','Hilbert','Knuth','Lloyd','Lukasiewicz','Wachs'),method='soundex')