action: Action

View source: R/dal_base.R

actionR 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)

daltoolbox documentation built on May 29, 2024, 1:57 a.m.