mirror of
https://github.com/msberends/AMR.git
synced 2025-07-10 19:41:55 +02:00
new AMR distance function
This commit is contained in:
@ -374,7 +374,12 @@ set_ab_names <- function(data, ..., property = "name", language = get_AMR_locale
|
||||
|
||||
if (is.data.frame(data)) {
|
||||
if (tryCatch(length(list(...)) > 0, error = function(e) TRUE)) {
|
||||
df <- pm_select(data, ...)
|
||||
out <- tryCatch(suppressWarnings(c(...)), error = function(e) NULL)
|
||||
if (!is.null(out)) {
|
||||
df <- data[, out, drop = FALSE]
|
||||
} else {
|
||||
df <- pm_select(data, ...)
|
||||
}
|
||||
} else {
|
||||
df <- data
|
||||
}
|
||||
|
Reference in New Issue
Block a user