Skip to contents

R6 does not offer interfaces. Hence all methods are considered as abstract. According to https://roxygen2.r-lib.org/articles/namespace.html#imports the R6Class import below is not necessary but we need it to get rid of a warning from the CRAN check :-(

Methods


Method refit()

Abstract function refits the model to a new data set

Usage

GOF_model_trainer$refit(model, data)

Arguments

model

fitted model

data

used for refitting the model

Returns

model refitted on data


Method clone()

The objects of this class are cloneable with this method.

Usage

GOF_model_trainer$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.