setters {kazaam} | R Documentation |
setters
Description
Setter functions for shaq objects. Generally not recommended unless you are sure you know what you're doing.
Usage
Data(x) <- value
## S4 replacement method for signature 'shaq'
Data(x) <- value
DATA(x) <- value
## S4 replacement method for signature 'shaq'
DATA(x) <- value
Arguments
x |
A shaq. |
value |
The new data. |
Details
Data<-
will perform checks on the inserted data and ensure that the
number of columns match across processors (requiring communication). It will
also udpate the number of rows as necessary.
DATA<-
will perform no checks, so use only if you're really sure that
you know what you're doing.
Communication
With Data<-
, a check on the global number of rows is performed. This
amounts to an allgather operation on a logical value (the local dimension
check).
See Also
[Package kazaam version 0.1-0 Index]