Skip to contents

Ordinary linear regression. Calls stats::lm().

Dictionary

This Learner can be instantiated via the dictionary mlr_learners or with the associated sugar function lrn():

mlr_learners$get("regr.lm")
lrn("regr.lm")

Meta Information

  • Task type: “regr”

  • Predict Types: “response”, “se”

  • Feature Types: “logical”, “integer”, “numeric”, “character”, “factor”

  • Required Packages: mlr3, mlr3learners, 'stats'

Parameters

IdTypeDefaultLevelsRange
dfnumericInf\((-\infty, \infty)\)
intervalcharacter-none, confidence, prediction-
levelnumeric0.95\((-\infty, \infty)\)
modellogicalTRUETRUE, FALSE-
offsetlogical-TRUE, FALSE-
pred.varuntyped--
qrlogicalTRUETRUE, FALSE-
scalenumericNULL\((-\infty, \infty)\)
singular.oklogicalTRUETRUE, FALSE-
xlogicalFALSETRUE, FALSE-
ylogicalFALSETRUE, FALSE-
rankdeficientcharacter-warnif, simple, non-estim, NA, NAwarn-
tolnumeric1e-07\((-\infty, \infty)\)
verboselogicalFALSETRUE, FALSE-

Contrasts

To ensure reproducibility, this learner always uses the default contrasts:

Setting the option "contrasts" does not have any effect. Instead, set the respective hyperparameter or use mlr3pipelines to create dummy features.

See also

Other Learner: mlr_learners_classif.cv_glmnet, mlr_learners_classif.glmnet, mlr_learners_classif.kknn, mlr_learners_classif.lda, mlr_learners_classif.log_reg, mlr_learners_classif.multinom, mlr_learners_classif.naive_bayes, mlr_learners_classif.nnet, mlr_learners_classif.qda, mlr_learners_classif.ranger, mlr_learners_classif.svm, mlr_learners_classif.xgboost, mlr_learners_regr.cv_glmnet, mlr_learners_regr.glmnet, mlr_learners_regr.kknn, mlr_learners_regr.km, mlr_learners_regr.nnet, mlr_learners_regr.ranger, mlr_learners_regr.svm, mlr_learners_regr.xgboost

Super classes

mlr3::Learner -> mlr3::LearnerRegr -> LearnerRegrLM

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage


Method loglik()

Extract the log-likelihood (e.g., via stats::logLik() from the fitted model.

Usage

LearnerRegrLM$loglik()


Method clone()

The objects of this class are cloneable with this method.

Usage

LearnerRegrLM$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (requireNamespace("stats", quietly = TRUE)) {
# Define the Learner and set parameter values
learner = lrn("regr.lm")
print(learner)

# Define a Task
task = tsk("mtcars")

# Create train and test set
ids = partition(task)

# Train the learner on the training ids
learner$train(task, row_ids = ids$train)

# print the model
print(learner$model)

# importance method
if("importance" %in% learner$properties) print(learner$importance)

# Make predictions for the test rows
predictions = learner$predict(task, row_ids = ids$test)

# Score the predictions
predictions$score()
}
#> <LearnerRegrLM:regr.lm>: Linear Model
#> * Model: -
#> * Parameters: list()
#> * Packages: mlr3, mlr3learners, stats
#> * Predict Types:  [response], se
#> * Feature Types: logical, integer, numeric, character, factor
#> * Properties: loglik, weights
#> 
#> Call:
#> stats::lm(formula = task$formula(), data = task$data())
#> 
#> Coefficients:
#> (Intercept)           am         carb          cyl         disp         drat  
#>    40.20704     -1.55511      0.73911     -0.53356      0.02032     -1.21430  
#>        gear           hp         qsec           vs           wt  
#>     0.91585     -0.04169      0.29774     -1.02735     -6.49910  
#> 
#> regr.mse 
#> 18.09525