as.etable: 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
x will be added to result as first column with name
row_labels. By default row names will be added if they are not NULL
and are not sequential numerics.
# NOT RUN {data(mtcars)
etable_mtcars = as.etable(mtcars)
is.etable(etable_mtcars) #TRUEetable_mtcars #another 'print' method is used
cor(mtcars) %>% as.etable()
# }