View source: R/as.data.frame.foldert.R
as.data.frame.foldert | R Documentation |
Builds a data frame from an object of class foldert
.
## S3 method for class 'foldert'
as.data.frame(x, row.names = NULL, optional = FALSE, ..., group.name = "time")
x |
object of class |
row.names, optional |
for consistency with |
... |
further arguments passed to or from other methods. |
group.name |
the name of the grouping variable. It is the name of the last column of the returned data frame. As the observations are indexed by time, the default value is |
as.data.frame.foldert
uses as.data.frame.folder
.
as.data.frame.foldert
returns a data frame.
Rachid Boumaza, Pierre Santagostini, Smail Yousfi, Gilles Hunault, Sabine Demotes-Mainard
foldert
: object of class foldert
.
as.foldert.data.frame
: build an object of class foldert
from a data frame.
as.foldert.array
: build an object of class foldert
from a 3d
-array.
data(floribundity)
ftflor <- foldert(floribundity, cols.select = "union", rows.select = "union")
print(ftflor)
dfflor <- as.data.frame(ftflor)
summary(dfflor)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.