opwf | R Documentation |
Create an offensive programming function, wrapping a standard R function.
opwf(fun_f_1, parameterNames_s, functionName_s_1 = NA_character_)
fun_f_1 |
a single R |
parameterNames_s |
the new names of the parameter function, must be
semantic argument names. Must be a bijection to actual |
functionName_s_1 |
A |
If any arguments default values are present, they are managed transparently and should be correctly and automatically substituted.
A R function
which takes given parameterNames_s
as arguments.
Fabien Gelineau <neonira@gmail.com>
Maintainer: Fabien Gelineau <neonira@gmail.com>
Refer to testFunction
# typical example
op_sum <- opwf(sum, c('...', 'removeNA_b_1'))
# example with substituted argument in existing default valued arguments
op_append <- opwf(append, c('originalValues_', 'valuesToInsert_', 'afterIndex_ui_1'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.