Checks If Two or More Species Delimitation Outputs are (Nearly) Equal
Source:R/check_delim.R
check_delim.Rd
check_delim()
checks if two or more species delimitation outputs have
differences in its dimensions, labels, and values.
Arguments
- list
a list containing two or more species delimitation outputs to check.
Details
check_delim()
will check if two or more species delimitation outputs have
different dimensions (rows, columns), if labels are the same or if there are
any duplicated or absent labels, and if there are any NA values or if partitions
were set using non numeric values. If TRUE
for any of the cases listed above,
check_delim()
will return an error.
Examples
# create dummy delimitation outputs
delim_1 <- tibble::tibble(
labels = paste0("seq", 1:10),
method_A = c(rep(1, 5), rep(2, 5))
)
delim_2 <- tibble::tibble(
labels = paste0("seq", 1:10),
method_B = c(rep(1, 3), rep(2, 2), rep(3, 5))
)
delim_3 <- tibble::tibble(
labels = paste0("seq", 1:10),
method_C = c(rep(1, 3), rep(2, 2), rep(3, 3), rep(4, 2))
)
# check outputs
check_delim(list(delim_1, delim_2, delim_3))
#> Checking species delimitation tables...
#> Checking table 1 against table 2...
#> Checking table 1 against table 3...
#> Checking table 1 against table 3...
#> ✔ Checking complete!
#> Checking table 1 against table 3...
#> Checking table 1 against table 3...
#> [1] TRUE