Nothing
test_that("ilr plus summary works", {
library(dplyr)
set.seed(123)
Y = pibble_sim()
priors <- pibble(NULL, Y$X, Y$upsilon, Y$Theta, Y$Gamma, Y$Xi)
priors <- to_ilr(priors)
expect_error(expect_error(summary(priors, pars="Lambda"))) # expect no error!
})
test_that("clr plus summary works", {
library(dplyr)
set.seed(123)
Y = pibble_sim()
priors <- pibble(NULL, Y$X, Y$upsilon, Y$Theta, Y$Gamma, Y$Xi)
priors <- to_clr(priors)
expect_error(expect_error(summary(priors, pars="Lambda"))) # expect no error!
})
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.