| FLQuantTotals {FLCore} | R Documentation |
These methods return an object of same dimensions as the input but with the sums along
the first (yearTotals) or second dimension (quantTotals). Although the
names might appear contradictory, it must be noted that what each method really returns
are the totals over the selected dimension.
quantTotals(x)
yearTotals(x)
The FLR Team
flq <- FLQuant(rlnorm(100), dim=c(10,10)) quantTotals(flq) # See how the values obtained by yearSums are being replicated yearSums(flq) # Get the proportions by quant flq / quantTotals(flq) # or year flq / yearTotals(flq)