action: Action

View source: R/dal_base.R

actionR Documentation

Action

Description

Generic to apply the object to data (e.g., predict, transform).

Usage

action(obj, ...)

Arguments

obj

object: a dal_base object to apply the transformation on the input dataset.

...

optional arguments.

Value

returns 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 Nov. 5, 2025, 7:09 p.m.