Nothing
##### test themes
test_that("themes graph correctly", {
test_iheid <- graphr(to_mentoring(ison_brandes)) +
labs(title = "Who leads and who follows?",
subtitle = "A mentoring network",
caption = "ison_brandes network") +
theme_iheid()
test_ethz <- graphr(to_mentoring(ison_brandes)) +
labs(title = "Who leads and who follows?",
subtitle = "A mentoring network",
caption = "ison_brandes network") +
theme_ethz()
test_uzh <- graphr(to_mentoring(ison_brandes)) +
labs(title = "Who leads and who follows?",
subtitle = "A mentoring network",
caption = "ison_brandes network") +
theme_uzh()
expect_equal(names(test_iheid[["theme"]][["title"]][["colour"]]), "IHEIDRed")
expect_null(names(test_ethz[["theme"]][["title"]][["colour"]]))
expect_equal(names(test_uzh[["theme"]][["title"]][["colour"]]), "UZH_Orange")
expect_equal(names(test_iheid[["theme"]][["plot.subtitle"]][["colour"]]),
"IHEIDGrey")
expect_null(names(test_ethz[["theme"]][["plot.subtitle"]][["colour"]]))
expect_equal(names(test_uzh[["theme"]][["plot.subtitle"]][["colour"]]),
"UZH_Blue")
expect_equal(test_iheid[["theme"]][["plot.caption"]][["family"]], "serif")
expect_equal(test_ethz[["theme"]][["plot.caption"]][["family"]], "sans")
expect_equal(test_uzh[["theme"]][["plot.caption"]][["family"]], "sans")
})
##### test scales
test_that("scales graph correctly", {
test_sdg <- ison_brandes %>%
mutate(color = c(rep(c(1,2,3,4,5), 2), 1)) %>%
graphr(node_color = color) +
scale_color_sdgs()
test_iheid <- ison_brandes %>%
mutate(color = c(rep(c(1,2), 5), 3)) %>%
graphr(node_color = color) +
scale_color_iheid()
test_ethz <- ison_brandes %>%
mutate(color = c(rep(c(1,2,3), 3), 4, 5)) %>%
graphr(node_color = color) +
scale_color_ethz()
test_uzh <- ison_brandes %>%
mutate(color = c(rep(c(1,2,3), 3), 1, 2)) %>%
graphr(node_color = color) +
scale_color_uzh()
test_rug <- ison_brandes %>%
mutate(color = c(rep(c(1,2), 4), 1, 2, 1)) %>%
graphr(node_color = color) +
scale_color_rug()
expect_equal(as.character(test_sdg[["scales"]][["scales"]][[2]][["call"]]), "scale_color_sdgs")
expect_equal(as.character(test_iheid[["scales"]][["scales"]][[2]][["call"]]), "scale_color_iheid")
expect_equal(as.character(test_ethz[["scales"]][["scales"]][[2]][["call"]]), "scale_color_ethz")
expect_equal(as.character(test_uzh[["scales"]][["scales"]][[2]][["call"]]), "scale_color_uzh")
expect_equal(as.character(test_rug[["scales"]][["scales"]][[2]][["call"]]), "scale_color_rug")
})
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.