Displaying 6 results from an estimated 6 matches for "adist".
Did you mean:
dist
2019 Feb 07
6
Optimización identificación de casos similares
...r ejemplo:
Nombre: Juan Pérez Documento: 123456789
Nombre: Juan Pérez Documento: 1234056789
Este caso sería una alerta de posible duplicado y tendría que revisarse
porque posiblemente en uno de los dos casos se ingreso errado el número de
documento.
Para calcular esta diferencia uso la función adist del paquete (utils), el
problema es que la forma en que tengo el código para revisar los 100.000
casos, la máquina no lo soporta por los recorridos que se hacen:
*El dataframe se llama Citacion.*
*Citacion[,"NombreDoc"]<- paste0(Citacion[,"NOMBRE"]," ",
Citacion[,...
2012 Aug 26
2
Package "datasets" not exporting anything on a recent R-2.15.1-patched
...e('datasets')
> getNamespaceExports(ns_datasets)
character(0)
Not the case with other packages (example here with "utils"):
> ns_utils <- getNamespace('utils')
> head(getNamespaceExports(ns_utils))
[1] "?" ".DollarNames" "adist" "alarm" "apropos"
[6] "aregexec"
Is this a temporary glitch, or is there something new and specific to
"datasets" ?
Best,
Laurent
PS: Obligatory sessionInfo:
> sessionInfo()
R version 2.15.1 Patched (2012-08-24 r60412)
Platform: x86_64-...
2013 Apr 02
1
R doesn't recognize utils functions, such as arrayIndex( )
Hi all,
When I called arrayIndex(20:23, dim=c(4,3,3)), it says "Error: could not
find function "arrayIndex"in R". So I called ls("package:utils") to see the
functions inside:
[1] "?"
[2] "adist"
[3] "alarm"
[4] "apropos"
[5] "aregexec"
[6] "argsAnywhere"
[7] "arrangeWindows"
[8] "as.person"
I'm only listing the first 8 results because it has a total of 223 listed
functions,which is too long.
When I looked u...
2014 Mar 05
1
[PATCH] Code coverage support proof of concept
...C_
useDynLib(utils, .registration = TRUE, .fixes = "C_")
-export("?", .DollarNames, CRAN.packages, Rprof, Rprofmem, RShowDoc,
+export("?", .DollarNames, CRAN.packages, Rcov_start, Rcov_stop, Rprof, Rprofmem, RShowDoc,
RSiteSearch, URLdecode, URLencode, View, adist, alarm, apropos,
aregexec, argsAnywhere, assignInMyNamespace, assignInNamespace,
as.roman, as.person, as.personList, as.relistable, aspell,
diff -ruN R-devel/src/library/utils/R/Rcov.R R-devel-cov/src/library/utils/R/Rcov.R
--- R-devel/src/library/utils/R/Rcov.R 1970-01-01 01:00:00....
2011 Oct 31
0
R 2.14.0 is released
...ow read more than 2^31 - 1 bytes in a single call
(the previously documented limitation).
o New function regexec() for finding the positions of matches as
well as all substrings corresponding to parenthesized
subexpressions of the given regular expression.
o New function adist() in package utils for computing 'edit'
(generalized Levenshtein) distances between strings.
o Class "raster" gains an is.na method to avoid confusion from the
misuse of the matrix method (such as PR#14618).
o The identical() function gains an ignore.bytecode...
2011 Oct 31
0
R 2.14.0 is released
...ow read more than 2^31 - 1 bytes in a single call
(the previously documented limitation).
o New function regexec() for finding the positions of matches as
well as all substrings corresponding to parenthesized
subexpressions of the given regular expression.
o New function adist() in package utils for computing 'edit'
(generalized Levenshtein) distances between strings.
o Class "raster" gains an is.na method to avoid confusion from the
misuse of the matrix method (such as PR#14618).
o The identical() function gains an ignore.bytecode...