as.data.frame | R Documentation |
Coerce to a Data Frame
## S4 method for signature 'CompositionMatrix'
as.data.frame(x, row.names = rownames(x), optional = FALSE, ...)
## S4 method for signature 'GroupedComposition'
as.data.frame(
x,
row.names = rownames(x),
optional = FALSE,
...,
group_var = ".group"
)
## S4 method for signature 'LogRatio'
as.data.frame(x, row.names = rownames(x), optional = FALSE, ...)
## S4 method for signature 'GroupedLogRatio'
as.data.frame(
x,
row.names = rownames(x),
optional = FALSE,
...,
group_var = ".group"
)
## S4 method for signature 'OutlierIndex'
as.data.frame(x, row.names = rownames(x), optional = FALSE, ...)
x |
An R object (typically, a |
row.names |
A |
optional |
A |
... |
Currently not used. |
group_var |
A |
A data.frame
.
N. Frerebeau
Other mutators:
mutators
,
totals()
## Create a count matrix
A1 <- matrix(data = sample(1:100, 100, TRUE), nrow = 20)
## Coerce to compositions
B <- as_composition(A1)
## Row sums are internally stored before coercing to relative frequencies
totals(B)
## This allows to restore the source data
A2 <- as_amounts(B)
## Coerce to a data.frame
X <- as.data.frame(B)
head(X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.