## S4 method for signature 'CompositionMatrix't(x)## S4 method for signature 'LogRatio't(x)
Arguments
x: A CompositionMatrix object.
Returns
A matrix, with dim and dimnames constructed appropriately from those of x.
Note
Implemented only to ensure that t() always returns a base matrix.
Examples
## Data from Aitchison 1986data("hongite")## Coerce to compositional datacoda <- as_composition(hongite)head(coda)## Subsetcoda[[1,1]]# Get the first valuecoda[1]# Get the first valuecoda[,]# Get all valuescoda[1,]# Get the first row## Subcompositionsubcoda <- coda[,1:3]# Get the first three columnhead(subcoda)