Nothing
test_that("`quantize` obeys fixture requests", {
ps <- ps_simulate()
comm <- ps_get_comm(ps, spatial = FALSE)
q <- quantize(comm, priority = "rows")
expect_equal(rowSums(q), rowSums(comm))
expect_false(all(colSums(q) == colSums(comm)))
q <- quantize(comm, priority = "cols")
expect_equal(colSums(q), colSums(comm))
expect_false(all(rowSums(q) == rowSums(comm)))
})
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.