Nothing
library(propr)
data(iris)
keep <- iris$Species %in% c("setosa", "versicolor")
counts <- iris[keep, 1:4] * 10
group <- ifelse(iris[keep, "Species"] == "setosa", "A", "B")
rho <- perb(counts)@matrix
diag(rho) <- 0
test_that("half-matrix correctly turned into matrix", {
expect_equal(
rho[1:16],
propr:::half2mat(propr:::lltRcpp(rho))[1:16]
)
})
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.