z <- c(-2, -2, 2, 2, -1, 1, -1, 1)
x <- c(rep(0.1, 4), rep(0.1, 4))
refcode <- c(rep(c("who_2006_hgt_male_", "who_2006_hgt_female_"), 2),
rep(c("who_2006_wgt_male_", "who_2006_wgt_female_"), 2))
result <- c(51.620, 50.482, 59.453, 58.371, 4.13, 5.03, 4.13, 5.03)
test_that("z2y() returns numeric values", {
expect_equal(z2y(z, x, refcode), result)
})
test_that("y2z(z2y(z)) returns z", {
expect_equal(y2z(z2y(z, x, refcode), x, refcode), z, tolerance = 0.005)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.