dim.exdf | R Documentation |
Returns the dimensions of an exdf
object's main_data
. Also
enables nrow
and ncol
for exdf
objects.
## S3 method for class 'exdf'
dim(x)
x |
An |
Returns dim(x[['main_data']])
.
exdf
simple_exdf <- exdf(data.frame(A = 1), data.frame(A = 'u'), data.frame(A = 'c'))
dim(simple_exdf)
dim(simple_exdf[['main_data']]) # An equivalent command
nrow(simple_exdf)
ncol(simple_exdf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.