pkg://R-2.6.0-3.fc8.1.ppc64.rpm:21471009/
usr/
lib64/
R/
library/
base/
R-ex/agrep.R
info downloads
### Name: agrep
### Title: Approximate String Matching (Fuzzy Matching)
### Aliases: agrep fuzzy matching
### Keywords: character
### ** Examples
agrep("lasy", "1 lazy 2")
agrep("lasy", "1 lazy 2", max = list(sub = 0))
agrep("laysy", c("1 lazy", "1", "1 LAZY"), max = 2)
agrep("laysy", c("1 lazy", "1", "1 LAZY"), max = 2, value = TRUE)
agrep("laysy", c("1 lazy", "1", "1 LAZY"), max = 2, ignore.case = TRUE)