Skip to contents

Multivariate Adaptive Regression Splines. Calls mda::mars() from mda.

Dictionary

This Learner can be instantiated via lrn():

lrn("regr.mars")

Meta Information

  • Task type: “regr”

  • Predict Types: “response”

  • Feature Types: “integer”, “numeric”

  • Required Packages: mlr3, mlr3extralearners, mda

Parameters

IdTypeDefaultLevelsRange
degreeinteger1\([1, \infty)\)
nkinteger-\([1, \infty)\)
penaltynumeric2\([0, \infty)\)
threshnumeric0.001\([0, \infty)\)
prunelogicalTRUETRUE, FALSE-
trace.marslogicalFALSETRUE, FALSE-
forward.steplogicalFALSETRUE, FALSE-

References

Friedman, H J (1991). “Multivariate adaptive regression splines.” The annals of statistics, 19(1), 1–67.

See also

Author

sumny

Super classes

mlr3::Learner -> mlr3::LearnerRegr -> LearnerRegrMars

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

LearnerRegrMars$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# Define the Learner
learner = lrn("regr.mars")
print(learner)
#> 
#> ── <LearnerRegrMars> (regr.mars): Multivariate Adaptive Regression Splines ─────
#> • Model: -
#> • Parameters: list()
#> • Packages: mlr3, mlr3extralearners, and mda
#> • Predict Types: [response]
#> • Feature Types: integer and numeric
#> • Encapsulation: none (fallback: -)
#> • Properties:
#> • Other settings: use_weights = 'error', predict_raw = 'FALSE'

# 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(learner$model)
#> $call
#> mda::mars(x = x, y = y)
#> 
#> $all.terms
#> [1]  1  2  4  6  8 10 12 14 16
#> 
#> $selected.terms
#> [1] 1 2 4
#> 
#> $penalty
#> [1] 2
#> 
#> $degree
#> [1] 1
#> 
#> $nk
#> [1] 21
#> 
#> $thresh
#> [1] 0.001
#> 
#> $gcv
#> [1] 8.339257
#> 
#> $factor
#>       am carb cyl disp drat gear hp qsec vs wt
#>  [1,]  0    0   0    0    0    0  0    0  0  0
#>  [2,]  0    0   0    0    0    0  0    0  0  1
#>  [3,]  0    0   0    0    0    0  0    0  0 -1
#>  [4,]  0    0   1    0    0    0  0    0  0  0
#>  [5,]  0    0  -1    0    0    0  0    0  0  0
#>  [6,]  0    0   0    0    0    1  0    0  0  0
#>  [7,]  0    0   0    0    0   -1  0    0  0  0
#>  [8,]  0    0   0    0    1    0  0    0  0  0
#>  [9,]  0    0   0    0   -1    0  0    0  0  0
#> [10,]  0    0   0    1    0    0  0    0  0  0
#> [11,]  0    0   0   -1    0    0  0    0  0  0
#> [12,]  1    0   0    0    0    0  0    0  0  0
#> [13,] -1    0   0    0    0    0  0    0  0  0
#> [14,]  0    0   0    0    0    0  0    0  1  0
#> [15,]  0    0   0    0    0    0  0    0 -1  0
#> [16,]  0    1   0    0    0    0  0    0  0  0
#> [17,]  0   -1   0    0    0    0  0    0  0  0
#> 
#> $cuts
#>       [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
#>  [1,]    0    0    0  0.0 0.00    0    0    0    0 0.000
#>  [2,]    0    0    0  0.0 0.00    0    0    0    0 1.513
#>  [3,]    0    0    0  0.0 0.00    0    0    0    0 1.513
#>  [4,]    0    0    4  0.0 0.00    0    0    0    0 0.000
#>  [5,]    0    0    4  0.0 0.00    0    0    0    0 0.000
#>  [6,]    0    0    0  0.0 0.00    3    0    0    0 0.000
#>  [7,]    0    0    0  0.0 0.00    3    0    0    0 0.000
#>  [8,]    0    0    0  0.0 2.76    0    0    0    0 0.000
#>  [9,]    0    0    0  0.0 2.76    0    0    0    0 0.000
#> [10,]    0    0    0 75.7 0.00    0    0    0    0 0.000
#> [11,]    0    0    0 75.7 0.00    0    0    0    0 0.000
#> [12,]    0    0    0  0.0 0.00    0    0    0    0 0.000
#> [13,]    0    0    0  0.0 0.00    0    0    0    0 0.000
#> [14,]    0    0    0  0.0 0.00    0    0    0    0 0.000
#> [15,]    0    0    0  0.0 0.00    0    0    0    0 0.000
#> [16,]    0    1    0  0.0 0.00    0    0    0    0 0.000
#> [17,]    0    1    0  0.0 0.00    0    0    0    0 0.000
#> 
#> $residuals
#>             [,1]
#>  [1,] -1.5078339
#>  [2,] -3.4624853
#>  [3,]  0.7961429
#>  [4,]  1.6107973
#>  [5,] -1.7198666
#>  [6,]  0.9214808
#>  [7,] -0.8065177
#>  [8,] -2.0838659
#>  [9,]  1.3267727
#> [10,]  1.1387860
#> [11,] -0.8012160
#> [12,] -0.8972733
#> [13,] -0.3404800
#> [14,]  3.7067230
#> [15,]  5.7535193
#> [16,]  1.8815421
#> [17,] -1.3332058
#> [18,] -0.1944703
#> [19,]  1.5551461
#> [20,] -2.1531922
#> [21,] -3.3905033
#> 
#> $fitted.values
#>           [,1]
#>  [1,] 22.50783
#>  [2,] 26.26249
#>  [3,] 20.60386
#>  [4,] 17.08920
#>  [5,] 19.81987
#>  [6,] 23.47852
#>  [7,] 23.60652
#>  [8,] 19.88387
#>  [9,] 15.07323
#> [10,] 16.16121
#> [11,] 16.00122
#> [12,] 11.29727
#> [13,] 10.74048
#> [14,] 10.99328
#> [15,] 26.64648
#> [16,] 28.51846
#> [17,] 16.83321
#> [18,] 27.49447
#> [19,] 28.84485
#> [20,] 17.95319
#> [21,] 24.79050
#> 
#> $lenb
#> [1] 17
#> 
#> $coefficients
#>           [,1]
#> [1,] 28.844854
#> [2,] -3.199961
#> [3,] -1.397332
#> 
#> $x
#>       [,1]  [,2] [,3]
#>  [1,]    1 1.107    2
#>  [2,]    1 0.807    0
#>  [3,]    1 1.702    2
#>  [4,]    1 1.927    4
#>  [5,]    1 1.947    2
#>  [6,]    1 1.677    0
#>  [7,]    1 1.637    0
#>  [8,]    1 1.927    2
#>  [9,]    1 2.557    4
#> [10,]    1 2.217    4
#> [11,]    1 2.267    4
#> [12,]    1 3.737    4
#> [13,]    1 3.911    4
#> [14,]    1 3.832    4
#> [15,]    1 0.687    0
#> [16,]    1 0.102    0
#> [17,]    1 2.007    4
#> [18,]    1 0.422    0
#> [19,]    1 0.000    0
#> [20,]    1 1.657    4
#> [21,]    1 1.267    0
#> 
#> attr(,"class")
#> [1] "mars"


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

# Score the predictions
predictions$score()
#> regr.mse 
#> 8.412984