Learn R Programming

text2vec (version 0.5.0)

fit_transform: Fit model to data, then transform it

Description

This is generic function to fit transformers (class = "transformer") and then apply fitted model to input.

Usage

fit_transform(x, model, y = NULL, ...)

# S3 method for Matrix fit_transform(x, model, y = NULL, ...)

# S3 method for matrix fit_transform(x, model, y = NULL, ...)

Arguments

x

a matrix like object, should inherit from Matrix or matrix

model

instance of class estimator which should implement method with signature $fit(x, ...)

y

NULL by default. Optional response variable for supervised models. Should inherit from vector Matrix or matrix. See documentation for corresponding models.

...

additional data/model dependent arguments to downstream functions.

Value

Transformed version of x