as.etable | R Documentation |
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.
as.etable(x, rownames_as_row_labels = NULL)
is.etable(x)
x |
data.frame/matrix |
rownames_as_row_labels |
logical. If it is TRUE than rownames of
|
object of class etable
data(mtcars)
etable_mtcars = as.etable(mtcars)
is.etable(etable_mtcars) #TRUE
etable_mtcars #another 'print' method is used
cor(mtcars) %>% as.etable()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.