Nothing
# similarity options for MTB
# uses options_manager from package 'settings'
SelectSimilarityFunction <- function(variable1, variable2, method = 'jw', ind_c0 = FALSE, ind_c1 = FALSE ,
m = 0.9, u = 0.1, p = 0.05, epsilon = 0.0004,
lower = 0.0, upper = 0.0, threshold = 0.85, jaroWeightFactor = 1.0, lenNgram = 2)
{
methodlist <- c('exact', 'exactCL', 'LCS', 'lv', 'dl', 'jaro', 'jw', 'jw2', 'ngram', 'Gcp', 'Reth', 'Soundex', 'Metaphone', 'DoubleMetaphone', 'tanimoto')
if (!is.element(method, methodlist)) {
cat('Allowed methods are:\n')
cat(methodlist, sep = ", ")
stop(paste0('error: Option value method = \'',method,'\' out of range.'))
method <- NULL
return(NULL)
}
if (m>1.0 ||m<0.0 ||u>1.0 || u < 0.0) {
stop(paste0('error: Option values \'m\' and \'u\' must be between 0.0 and 1.1.'))
method <- NULL
return(NULL)
}
MergeOptionsRes <- settings::options_manager(variable1 = variable1, variable2 = variable2, method = method, ind_c0 = ind_c0, ind_c1 = ind_c1 ,
m = m, u = u, p = p, epsilon = epsilon, upper = upper, lower = lower, threshold = threshold, jaroWeightFactor = jaroWeightFactor, lenNgram = lenNgram)
return(MergeOptionsRes)
}
SelectBlockingFunction <- function(variable1, variable2, method )
{
# check methods
methodlist <- c('exact', 'exactCL', '0' )
if (!is.element(method, methodlist)) {
cat(' Allowed methods are:\n')
cat(methodlist, sep = ", ")
stop('error: Option value method out of range.')
method <- NULL
}
BlockingOptionsRes <- settings::options_manager(variable1 = variable1, variable2 = variable2, method = method)
return(BlockingOptionsRes)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.