Description Usage Arguments Value Slots Author(s) See Also Examples
View source: R/functions-Params.R
The GenericParam
class allows to store generic parameter
information such as the name of the function that was/has to be called
(slot fun
) and its arguments (slot args
). This object is
used to track the process history of the data processings of an
XCMSnExp
object. This is in contrast to e.g. the
CentWaveParam
object that is passed to the actual
processing method.
1 2 3 4 | GenericParam(fun = character(), args = list())
## S4 method for signature 'GenericParam'
show(object)
|
fun |
|
args |
|
object |
|
The GenericParam
function returns a GenericParam
object.
fun
character
specifying the function name.
args
list
(ideally named) with the arguments to the
function.
.__classVersion__
the version of the class.
Johannes Rainer
processHistory
for how to access the process history
of an XCMSnExp
object.
1 2 3 | prm <- GenericParam(fun = "mean")
prm <- GenericParam(fun = "mean", args = list(na.rm = TRUE))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.