ezFrame | R Documentation |
The original data.frame()
is suitable for statistical modelling with factors etc.
Our version is designed to be more suitable for data processing, i.e. we
* do keep column names the way they are; we do not require that they represent valid variable names
* by default we do not convert strings to factors
There exist, similarities with data_frame
in Hadleys package. The difference is that we encourage to use rownames while he discourages this.
ezFrame(
...,
row.names = NULL,
check.rows = TRUE,
check.names = FALSE,
stringsAsFactors = FALSE
)
... |
additional arguments to be passed to |
Returns a data.frame.
Rehrauer, Hubert
Schmid, Peter
ezFrame(first=1:3, second=5, "with space"="text", row.names=letters[1:3])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.