Accessor function to extract mean weights

component_weights(object)

Arguments

object

a decon object

Value

Extract mean fractions of the object

Examples

# \donttest{
data(juncus)
tmp <- process(juncus, init_mass = 18.96,
               temp = 'temp_C', mass_loss = 'mass_loss')
output <- deconvolve(tmp)
component_weights(output)
#>           HC         CL         LG value_type
#> 1 21.5600422 17.6748693 30.6629891       mean
#> 2 20.4327310 16.6433643 29.5201899       2.5%
#> 3 21.5980403 17.6367428 30.6535159        50%
#> 4 22.7575067 18.6700545 31.8302178      97.5%
#> 5  0.5978226  0.5128315  0.5914671         sd
# }