Nothing
context("v3.0.0 Bug Fixes")
test_that("read.xlsx bug fixes", {
file <- system.file("extdata", "readTest.xlsx", package = "openxlsx")
df <- read.xlsx(file, sheet = 1, rows = 1:2, cols = 1)
expect_equal(df, data.frame("Var1" = TRUE))
df <- read.xlsx(file, sheet = 1, rows = 1, cols = 1, colNames = FALSE)
expect_equal(df, data.frame("X1" = "Var1", stringsAsFactors = FALSE))
})
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.