Nothing
context("setRowColNames")
test_that("setRowColNames", {
x = y = matrix(1:4, 2, 2)
rownames(y) = c("a", "b")
expect_equal(setRowNames(x, c("a", "b")), y)
colnames(y) = c("c", "d")
expect_equal(setColNames(setRowNames(x, c("a", "b")), c("c", "d")), y)
})
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.