Nothing
options(list(seqR_batch_size_default = 1))
expect_matrices_equal <- function(a, b) {
if(nrow(a) == 0 || ncol(a) == 0) {
testthat::expect_true(nrow(a) == nrow(b) && ncol(a) == ncol(b))
} else {
testthat::expect_setequal(colnames(a), colnames(b))
ordered_b <- b[, colnames(a)]
testthat::expect_equal(as.vector(a), as.vector(ordered_b))
}
}
to_matrix <- function(v) {
res <- matrix(unname(v), byrow=TRUE, nrow=1)
colnames(res) <- names(v)
res
}
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.