Mean amounts and mean compositions presented in a complr object.
      Source: R/complr-methods.R
      mean.complr.RdMean amounts and mean compositions presented in a complr object.
Arguments
- x
- An object of class - complr.
- weight
- A character value specifying the weight to use in calculation of the reference composition. If - "equal", give equal weight to units (e.g., individuals). If- "proportional", weights in proportion to the frequencies of units being averaged (e.g., observations across individuals) Default is- equal.
- parts
- A optional character string specifying names of compositional parts that should be considered in the substitution analysis. This should correspond to a single set of names of compositional parts specified in the - complrobject. Default to the first composition in the- complrobject.
- ...
- generic argument, not in use. 
Examples
x <- complr(data = mcompd, sbp = sbp,
                parts = c("TST", "WAKE", "MVPA", "LPA", "SB"),
                idvar = "ID")
mean(x)
#> $X
#>         tTST        tWAKE        tMVPA         tLPA          tSB 
#> "0.31090985" "0.04219846" "0.09859420" "0.38164618" "0.16665131" 
#> attr(,"class")
#> [1] "acomp"
#> 
#> $bX
#>         bTST        bWAKE        bMVPA         bLPA          bSB 
#> "0.31091025" "0.04219850" "0.09859328" "0.38164595" "0.16665201" 
#> attr(,"class")
#> [1] "acomp"
#> 
#> $wX
#>        wTST       wWAKE       wMVPA        wLPA         wSB 
#> "0.2024719" "0.1958129" "0.1959077" "0.2045565" "0.2012510" 
#> attr(,"class")
#> [1] "acomp"
#> 
#> $Z
#>       z1_1       z2_1       z3_1       z4_1 
#> -0.4658468  1.4872448 -0.8680194  0.6631910 
#> 
#> $bZ
#>      bz1_1      bz2_1      bz3_1      bz4_1 
#> -0.5212779  1.4167793 -0.7802634  0.5796594 
#> 
#> $wZ
#>       wz1_1       wz2_1       wz3_1       wz4_1 
#>  0.05543108  0.07046554 -0.08775604  0.08353160 
#>