as.etable {expss} | R Documentation |
Convert data.frame/matrix to object of class 'etable'
Description
If x
is data.frame
then as.etable
just adds
etable
to class
attribute of x
. If x
is matrix
then it will be converted to data.frame.
Usage
as.etable(x, rownames_as_row_labels = NULL)
is.etable(x)
Arguments
x |
data.frame/matrix |
rownames_as_row_labels |
logical. If it is TRUE than rownames of
|
Value
object of class etable
Examples
data(mtcars)
etable_mtcars = as.etable(mtcars)
is.etable(etable_mtcars) #TRUE
etable_mtcars #another 'print' method is used
cor(mtcars) %>% as.etable()
[Package expss version 0.11.6 Index]