Nothing
test_that("Number of rows grow with rbind", {
lay1 <- gtable_add_rows(gtable(), cm)
lay2 <- gtable_add_rows(gtable(), rep(cm, 2))
expect_equal(nrow(rbind(lay1, lay2)), 3)
expect_equal(nrow(rbind(lay2, lay1)), 3)
})
test_that("Number of cols grow with cbind", {
lay1 <- gtable_add_cols(gtable(), cm)
lay2 <- gtable_add_cols(gtable(), rep(cm, 2))
expect_equal(ncol(cbind(lay1, lay2)), 3)
expect_equal(ncol(cbind(lay2, lay1)), 3)
})
test_that("Heights and widths vary with size parameter", {
col1 <- gtable_col("col1", list(grob1), cm, cm)
col2 <- gtable_col("col1", list(grob1), cm2, cm2)
expect_equal(cbind(col1, col2, size = "first")$heights, cm)
expect_equal(cbind(col1, col2, size = "last")$heights, cm2)
expect_equal(cbind(col1, col2, size = "min")$heights, cm)
expect_equal(cbind(col1, col2, size = "max")$heights, cm2)
expect_equal(rbind(col1, col2, size = "first")$widths, cm)
expect_equal(rbind(col1, col2, size = "last")$widths, cm2)
expect_equal(rbind(col1, col2, size = "min")$widths, cm)
expect_equal(rbind(col1, col2, size = "max")$widths, cm2)
})
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.