qwerty.dist {SemNetCleaner} | R Documentation |
QWERTY Distance for Same Length Words
Description
Computes QWERTY Distance for words that have the same number of characters. Distance is computed based on the number of keys a character is away from another character on a QWERTY keyboard
Usage
qwerty.dist(wordA, wordB)
Arguments
wordA |
Character vector. Word to be compared |
wordB |
Character vector. Word to be compared |
Value
Numeric value for distance between wordA
and wordB
Author(s)
Alexander Christensen <alexpaulchristensen@gmail.com>
Examples
#Identical values for Damerau-Levenshtein
stringdist::stringdist("big", "pig", method="dl")
stringdist::stringdist("big", "bug", method="dl")
#Different distances for QWERTY
qwerty.dist("big", "pig")
qwerty.dist("big", "bug") # Probably meant to type "bug"
[Package SemNetCleaner version 1.3.4 Index]