NArray | R Documentation |
Defines an array of NAs, solely from the list of dimnames
NArray( x, cells=NA )
ZArray( x, cells=0 )
x |
A (possibly named) list to be used as dimnames for the resulting array |
cells |
Value(s) to fill the array |
This is a simple useful way of defining arrays to be used for
collection of results. The point is that everything is defined from
the named list, so in the process of defining what you want to
collect, there is only one place in the program to edit. It's just a
wrapper for array
. ZArray
is just a wrapper for
NArray
with a different default.
An array with dimnames
attribute x
, and all values
equal to cells
.
Bendix Carstensen
ftable(
NArray( list(Aye = c("Yes", "Si", "Oui"),
Bee = c("Hum", "Buzz"),
Sea = c("White", "Black", "Red", "Dead") ) ) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.