Nothing
# CLR transformation ===========================================================
coda <- data.frame(
X = c(20, 60, 20, 20),
Y = c(20, 20, 60, 40),
Z = c(60, 20, 20, 40)
)
coda <- coda / rowSums(coda)
coda <- as.matrix(coda)
x <- isopleuros:::clr(coda)
y <- isopleuros:::clr_inv(x)
expect_equivalent(y, coda)
# ILR transformation ===========================================================
coda <- data.frame(
X = c(20, 60, 20, 20),
Y = c(20, 20, 60, 40),
Z = c(60, 20, 20, 40)
)
coda <- coda / rowSums(coda)
coda <- as.matrix(coda)
x <- isopleuros:::ilr(coda)
y <- isopleuros:::ilr_inv(x)
expect_equivalent(y, coda)
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.