fit: Fit

View source: R/dal_base.R

fitR Documentation

Fit

Description

Applies the fit method to a model object to train or configure it using the provided data and optional arguments

Usage

fit(obj, ...)

Arguments

obj

object

...

optional arguments.

Value

returns a object after fitting

Examples

data(iris)
# an example is minmax normalization
trans <- minmax()
trans <- fit(trans, iris)
tiris <- action(trans, iris)

daltoolbox documentation built on Nov. 3, 2024, 9:06 a.m.