Nothing
test_that("Data can be compressed and decompressed", {
expect_true({
volcano_compressed <- blosc_compress(volcano, typesize = 2, dtype = "<f2")
volcano_reconstruct <- blosc_decompress(volcano_compressed, dtype = "<f2")
object.size(volcano) > object.size(volcano_compressed) &&
all(volcano_reconstruct == volcano)
})
})
test_that("blosc_info lists information correctly", {
expect_true({
volcano_compressed <- blosc_compress(volcano, typesize = 2,
dtype = "<f2", compressor = "lz4")
bi <- blosc_info(volcano_compressed)
bi$`Type size in bytes` == 2 &&
bi$Compressor == "LZ4" &&
bi$`Uncompressed size in bytes` == 10614
})
})
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.