create.block | R Documentation |
Block objects allow for easy maniputlation of dataflow. Each block object is given an input, output, and function. The input represents where the block's inputs come from (NULL if none). The output represents where the block's outputs go to (NULL if none). The callback function is the actual manipulation of data.
create.block(
block.name,
callback = function(l) {
return(l)
}
)
block.name |
Name of block |
callback |
callback function (Feed-forward pass-through if none) |
block object
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.