Nothing
# Tests for the generate family of functions
test_that("random creation works", {
expect_false(isTRUE(all.equal(generate_random(4,.3), generate_random(4,.3))))
expect_false(isTRUE(all.equal(generate_random(c(2,4),.3), generate_random(c(2,4),.3))))
expect_error(generate_random(c(1,2,3)), "must be of length")
# Bipartite graph
expect_s3_class(generate_random(ison_southern_women, 0.4), "igraph")
expect_true(is_twomode(generate_random(ison_southern_women, 0.4)))
})
test_that("generate_smallworld() works", {
expect_s3_class(generate_smallworld(12, 0.025), "igraph")
expect_equal(igraph::vcount(generate_smallworld(12, 0.025)), 12)
})
test_that("generate_scalefree() works", {
expect_s3_class(generate_scalefree(12, 0.025), "igraph")
})
test_that("generate_permutation() works", {
expect_s3_class(generate_permutation(ison_southern_women), "igraph")
})
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.