Array version of miniclo.

miniclo_array(x, parts)

Arguments

x

multidimensional array

parts

index of dimension of x that represents parts (e.g., compositional variables)

Value

array

Examples

x <- array(1:100, dim=c(10, 5, 2)) miniclo_array(x, parts=2)
#> , , 1 #> #> [,1] [,2] [,3] [,4] [,5] #> [1,] 0.00952381 0.1047619 0.2 0.2952381 0.3904762 #> [2,] 0.01818182 0.1090909 0.2 0.2909091 0.3818182 #> [3,] 0.02608696 0.1130435 0.2 0.2869565 0.3739130 #> [4,] 0.03333333 0.1166667 0.2 0.2833333 0.3666667 #> [5,] 0.04000000 0.1200000 0.2 0.2800000 0.3600000 #> [6,] 0.04615385 0.1230769 0.2 0.2769231 0.3538462 #> [7,] 0.05185185 0.1259259 0.2 0.2740741 0.3481481 #> [8,] 0.05714286 0.1285714 0.2 0.2714286 0.3428571 #> [9,] 0.06206897 0.1310345 0.2 0.2689655 0.3379310 #> [10,] 0.06666667 0.1333333 0.2 0.2666667 0.3333333 #> #> , , 2 #> #> [,1] [,2] [,3] [,4] [,5] #> [1,] 0.1436620 0.1718310 0.2 0.2281690 0.2563380 #> [2,] 0.1444444 0.1722222 0.2 0.2277778 0.2555556 #> [3,] 0.1452055 0.1726027 0.2 0.2273973 0.2547945 #> [4,] 0.1459459 0.1729730 0.2 0.2270270 0.2540541 #> [5,] 0.1466667 0.1733333 0.2 0.2266667 0.2533333 #> [6,] 0.1473684 0.1736842 0.2 0.2263158 0.2526316 #> [7,] 0.1480519 0.1740260 0.2 0.2259740 0.2519481 #> [8,] 0.1487179 0.1743590 0.2 0.2256410 0.2512821 #> [9,] 0.1493671 0.1746835 0.2 0.2253165 0.2506329 #> [10,] 0.1500000 0.1750000 0.2 0.2250000 0.2500000 #>