Nothing
# set-up ====
enumerate <- 0L
errorfun <- function(tt) {
if(isFALSE(tt)) stop(print(tt))
}
x <- cbind(id = c(rep(1:3, each = 2), 1), grp = c(rep(1:2, 3), 2), val = rnorm(7))
grp <- as.factor(x[, 2])
levels(grp) <- c("a", "b")
margin <- 1L
a <- rbind(x[grp == "a", ], NA)
b <- x[grp == "b", ]
expected <- bind_array(
list(a = a, b = b), along = 3L
)
expect_equal(
acast(x, margin, grp, fill = TRUE),
expected
)
enumerate <- enumerate + 1L
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.