partition_table | R Documentation |
Generate partition summary statistics for array objects along the last dimension
partition_table(x, na.rm = FALSE, ...) ## S3 method for class 'array' partition_table(x, na.rm = FALSE, ...) ## S3 method for class 'AbstractFArray' partition_table(x, na.rm = FALSE, ...)
x |
an array or |
na.rm |
whether to remove |
... |
passed to other methods or ignored |
A data frame with the following possible columns: Min
,
Max
, Mean
, Standard Deviation
, NAs
(total number
of NA
), and Length
.
Zhengjia Wang
# R array x <- array(1:27, c(3,3,3)) partition_table(x) # farray x <- farray(tempfile(), storage_format = 'double', dim = c(3,3,3)) x[] <- 1:27 partition_table(x, quiet=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.