Skip to contents

Polynomial regression. Calls polyreg::polyFit() from polyreg.

Initial parameter values

  • deg: We have set this to 2, pretty arbitrarily.

  • noisy: We have set this to FALSE, to get no output on the console.

Dictionary

This Learner can be instantiated via lrn():

lrn("regr.polyFit")

Meta Information

  • Task type: “regr”

  • Predict Types: “response”

  • Feature Types: “numeric”, “factor”

  • Required Packages: mlr3, mlr3extralearners, polyreg

Parameters

IdTypeDefaultLevelsRange
deginteger-\([0, \infty)\)
maxInteractDeginteger-\([0, \infty)\)
return_xylogicalFALSETRUE, FALSE-
returnPolylogicalFALSETRUE, FALSE-
noisylogicalTRUETRUE, FALSE-

See also

Super classes

mlr3::Learner -> mlr3::LearnerRegr -> LearnerRegrPolyFit

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage


Method clone()

The objects of this class are cloneable with this method.

Usage

LearnerRegrPoly$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.