action {daltoolbox} | R Documentation |
Action
Description
Executes the action of model applied in provided data
Usage
action(obj, ...)
Arguments
obj |
object: a dal_base object to apply the transformation on the input dataset. |
... |
optional arguments. |
Value
The result of an action of the model applied in provided data
Examples
data(iris)
# an example is minmax normalization
trans <- minmax()
trans <- fit(trans, iris)
tiris <- action(trans, iris)
[Package daltoolbox version 1.0.767 Index]