CompositionMatrix-class | R Documentation |
An S4 class to represent compositional data.
totals
A numeric
vector to store the absolute row sums (before
the closure of the compositions).
groups
A factor
vector to store the group names.
In the code snippets below, x
is a CompositionMatrix
object.
as.data.frame(x)
Coerces to a data.frame
.
In the code snippets below, x
is a CompositionMatrix
object.
x[i, j]
Extract parts of a matrix (see [
).
This class inherits from matrix
.
N. Frerebeau
as_composition()
Other classes:
LogRatio-class
,
LogicalMatrix-class
,
NumericMatrix-class
,
OutlierIndex-class
## Data from Aitchison 1986
data("hongite")
## Coerce to compositional data
coda <- as_composition(hongite)
## codaccess
dim(coda) # Get the matrix dimensions
row(coda) # Get the row indexes
col(coda, as.factor = TRUE) # Get the column indexes
nrow(coda) # Get the number of rows
ncol(coda) # Get the number of columns
dimnames(coda) # Get the dimension names
rownames(coda) <- LETTERS[1:25] # Set the row names
rownames(coda) # Get the rownames
colnames(coda) <- letters[21:25] # Set the column names
colnames(coda) # Get the column names
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.