Nothing
# library(testthat)
context("branches_attr_by_")
test_that("is.infinite works", {
expect_false(is.infinite(NA))
expect_false(is.infinite(as.numeric(NA)))
expect_true(is.infinite(Inf))
expect_false(is.infinite("Inf"))
expect_true(is.infinite(as.numeric("Inf")))
})
test_that("assign_values_to_branches_edgePar - when trying to keep a value un-touched", {
a <- c(1:2) %>%
dist() %>%
hclust() %>%
as.dendrogram()
# this is how we want it to look:
# Original remains:
# str(assign_values_to_branches_edgePar(a, value = c(1,"Inf"), edgePar = "col"))
# str(assign_values_to_branches_edgePar(a, value = c(1,Inf), edgePar = "col"))
# A change is made:
# str(assign_values_to_branches_edgePar(a, value = c(1,NULL), edgePar = "col")) # since it recycles 1
# str(assign_values_to_branches_edgePar(a, value = c(1,NA), edgePar = "col")) # One is 1, and the other NA.
# this is false because one has
# attr(*, "edgePar")= Named num 1
# and the other:
# attr(*, "edgePar")= Named chr "1"
expect_false(
identical(
assign_values_to_branches_edgePar(a, value = c(1, "Inf"), edgePar = "col"),
assign_values_to_branches_edgePar(a, value = c(1, Inf), edgePar = "col")
)
)
# str(unclass(assign_values_to_branches_edgePar(a, value = c(1,"Inf"), edgePar = "col")))
# str(unclass(assign_values_to_branches_edgePar(a, value = c(1,Inf), edgePar = "col")))
# answer %>% unclass %>% str
# plot(answer)
# dput(answer)
answer <- assign_values_to_branches_edgePar(a, value = c(1, "Inf"), edgePar = "col")
true_answer <- structure(list(
structure(1L, label = 1L, members = 1L, height = 0, leaf = TRUE),
structure(2L, label = 2L, members = 1L, height = 0, leaf = TRUE, edgePar = structure(list(
col = "1"
), .Names = "col"))
), members = 2L, midpoint = 0.5, height = 1, edgePar = structure(list(
col = "1"
), .Names = "col"), class = "dendrogram")
expect_true(
identical(answer, true_answer)
)
answer <- assign_values_to_branches_edgePar(a, value = c(1, Inf), edgePar = "col")
true_answer <- structure(list(
structure(1L, label = 1L, members = 1L, height = 0, leaf = TRUE),
structure(2L, label = 2L, members = 1L, height = 0, leaf = TRUE, edgePar = structure(list(
col = 1
), .Names = "col"))
), members = 2L, midpoint = 0.5, height = 1, edgePar = structure(list(
col = 1
), .Names = "col"), class = "dendrogram")
expect_true(
identical(answer, true_answer)
)
answer <- assign_values_to_branches_edgePar(a, value = c(1, NULL), edgePar = "col")
true_answer <- structure(list(structure(1L, label = 1L, members = 1L, height = 0, leaf = TRUE, edgePar = structure(list(
col = 1
), .Names = "col")), structure(2L, label = 2L, members = 1L, height = 0, leaf = TRUE, edgePar = structure(list(
col = 1
), .Names = "col"))), members = 2L, midpoint = 0.5, height = 1, edgePar = structure(list(
col = 1
), .Names = "col"), class = "dendrogram")
expect_true(
identical(answer, true_answer)
)
answer <- assign_values_to_branches_edgePar(a, value = c(1, NA), edgePar = "col")
true_answer <- structure(list(structure(1L, label = 1L, members = 1L, height = 0, leaf = TRUE, edgePar = structure(list(
col = NA_real_
), .Names = "col")), structure(2L, label = 2L, members = 1L, height = 0, leaf = TRUE, edgePar = structure(list(
col = 1
), .Names = "col"))), members = 2L, midpoint = 0.5, height = 1, edgePar = structure(list(
col = 1
), .Names = "col"), class = "dendrogram")
expect_true(
identical(answer, true_answer)
)
})
# dend_node <- 1
# dend_node
# attr(dend_node, "edgePar")[["a"]] <- list(1) # doesn't work
# attr(dend_node, "edgePar")["a"] <- list(1) # works!
# attr(dend_node, "edgePar")["b"] <- list(1) # works!
# attr(dend_node, "edgePar")[["b"]] <- list(1) # doesn't work
test_that("branches_attr_by_lists works", {
dend <- c(1:4) %>%
dist() %>%
hclust() %>%
as.dendrogram()
L <- list(1:2, 3)
tmp <- dend %>% branches_attr_by_lists(L)
expect_equal(attr(tmp[[1]], "edgePar")$col, 2)
expect_equal(attr(tmp[[2]], "edgePar")$col, 2)
expect_equal(attr(tmp[[1]][[1]], "edgePar")$col, 1)
expect_equal(attr(tmp[[1]][[2]], "edgePar")$col, 1)
expect_equal(attr(tmp[[2]][[1]], "edgePar")$col, 2)
expect_equal(attr(tmp[[2]][[2]], "edgePar")$col, 1)
# with changed col/lwd/lty
tmp <- dend %>%
branches_attr_by_lists(L, TF_value = "blue") %>%
branches_attr_by_lists(L, attr = "lwd", TF_value = 4) %>%
branches_attr_by_lists(L, attr = "lty", TF_value = 3)
expect_equal(attr(tmp[[1]], "edgePar")$col, "blue")
expect_equal(attr(tmp[[1]], "edgePar")$lwd, 4)
expect_equal(attr(tmp[[1]], "edgePar")$lty, 3)
# when individual features are selected
tmp <- dend %>% branches_attr_by_lists(c(1, 4))
expect_equal(attr(tmp[[1]], "edgePar")$col, 2)
expect_equal(attr(tmp[[2]], "edgePar")$col, 2)
expect_equal(attr(tmp[[1]][[1]], "edgePar")$col, 2)
expect_equal(attr(tmp[[1]][[2]], "edgePar")$col, 1)
expect_equal(attr(tmp[[2]][[1]], "edgePar")$col, 1)
expect_equal(attr(tmp[[2]][[2]], "edgePar")$col, 2)
# test when list argument not provided and non-dendrogram object passed in
expect_error(branches_attr_by_lists(dend))
hc <- c(1:4) %>%
dist() %>%
hclust()
expect_error(branches_attr_by_lists(hc))
})
test_that("branches_attr_by_clusters works", {
dend <- c(1:4) %>%
dist() %>%
hclust() %>%
as.dendrogram()
# fourth cluster should be purple color if we assign branches colors
clusters <- c(1,2,3,4)
new_dend <- branches_attr_by_clusters(dend, clusters, attr = "col")
expect_identical(
dendrapply(new_dend, function(dend_node) attributes(dend_node))$class$class$edgePar$col,
"#7866D8"
)
# if non-dendrogram object is passed in
hc <- c(1:4) %>%
dist() %>%
hclust()
expect_error(expect_warning(
branches_attr_by_clusters(hc, clusters, attr = "col")
))
# if clusters is missing
expect_error(
branches_attr_by_clusters(dend)
)
# if clusters isn't numeric
expect_warning(
branches_attr_by_clusters(dend, as.character(clusters))
)
# if length of clusters isn't the same as the number of leaves
expect_error(
branches_attr_by_clusters(dend, clusters[-1])
)
# if number of colors provided does not equal number of clusters
values = c("red", "blue", "green")
expect_warning(
branches_attr_by_clusters(dend, clusters, values)
)
# if any colors are NA
values = c("red", "blue", "green", NA)
expect_warning(
branches_attr_by_clusters(dend, clusters, values)
)
})
test_that("branches_attr_by_labels works", {
dend <- c(1:4) %>%
dist() %>%
hclust() %>%
as.dendrogram()
# assign labels 1 and 2 a color
labels <- as.character(1:2)
new_dend <- branches_attr_by_labels(dend, labels, 2, attr = "col")
suppressWarnings(expect_identical(
dendrapply(new_dend, function(dend_node) attributes(dend_node))$members$members$edgePar$col,
2
))
# assign labels 1 and 2 a lwd
new_dend <- branches_attr_by_labels(dend, labels, 2, attr = "lwd")
suppressWarnings(expect_identical(
dendrapply(new_dend, function(dend_node) attributes(dend_node))$height$class$edgePar$lwd,
2
))
# assign labels 1 and 2 a lty
new_dend <- branches_attr_by_labels(dend, labels, 2, attr = "lty")
suppressWarnings(expect_identical(
dendrapply(new_dend, function(dend_node) attributes(dend_node))$members$members$edgePar$lty,
2
))
# if non-dendrogram object is passed in
x <- matrix(1:4, nrow = 2)
expect_error(
branches_attr_by_labels(x, labels, attr = "col")
)
# if labels is missing
expect_error(
branches_attr_by_labels(dend)
)
# if labels is not of type character
dendextend_options("warn", T)
expect_warning(
branches_attr_by_labels(dend, as.numeric(labels), attr = "col")
)
dendextend_options("warn", F)
# if any labels aren't in the dendrogram
labels = as.character(c(1,5))
expect_warning(
branches_attr_by_labels(dend, labels, attr = "col")
)
})
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.