Nothing
test_that("rowBootMeans differs from rowMeans and bootstraps in an expected way", {
x <- matrix(1:9, 3)
res <- withr::with_seed(
seed = 1234,
rowBootMeans(x))
expect_equal(res, c(3, 6, 4))
expect_false(all(res == rowMeans(x)))
})
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.