Nothing
test_that("coeffTable matches identity coefficients by ID pair", {
x = relabel(nuclearPed(2), new = c("Z", "A", "B", "C"))
tab = coeffTable(x, coeff = c("kappa", "identity"))
expect_equal(tab[tab$id1 == "A" & tab$id2 == "B", "D8"], 1)
})
test_that("coeffTable respects input order", {
x = selfingPed(1)
res1 = coeffTable(x, ids = 1:2, coeff = "identity")
res2 = coeffTable(x, ids = 2:1, coeff = "identity")
expect_equal(res1[c("D3", "D5", "D7")], c(0, 0.5, 0.5), check.attributes = FALSE)
expect_equal(res2[c("D3", "D5", "D7")], c(0.5, 0, 0.5), check.attributes = FALSE)
})
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.