qwerty.dist: QWERTY Distance for Same Length Words

Description Usage Arguments Value Author(s) Examples

View source: R/qwerty.dist.R

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

1
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

1
2
3
4
5
6
7
8
9
#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" 

SemNetCleaner documentation built on Sept. 16, 2021, 5:12 p.m.