mlr_learners_surv.gamboost: Boosted Generalized Additive Survival Learner

Description Details Dictionary Super classes Methods References See Also Examples

Description

Boosted generalized additive survival learner. Calls mboost::gamboost() from package mboost.

Details

distr prediction made by mboost::survFit().

Dictionary

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

1
2
mlr_learners$get("surv.gamboost")
lrn("surv.gamboost")

Super classes

mlr3::Learner -> mlr3proba::LearnerSurv -> LearnerSurvGAMBoost

Methods

Public methods

Inherited methods

Method new()

Creates a new instance of this R6 class.

Usage
LearnerSurvGAMBoost$new()

Method importance()

The importance scores are extracted with the function mboost::varimp() with the default arguments.

Usage
LearnerSurvGAMBoost$importance()
Returns

Named numeric().


Method selected_features()

Selected features are extracted with the function mboost::variable.names.mboost(), with used.only = TRUE.

Usage
LearnerSurvGAMBoost$selected_features()
Returns

character().


Method clone()

The objects of this class are cloneable with this method.

Usage
LearnerSurvGAMBoost$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

References

mlr3learners.mboostbuhlmann_2003

See Also

Dictionary of Learners: mlr3::mlr_learners

Examples

1
2
3
4
5
6
7
if (requireNamespace("mboost")) {
  learner = mlr3::lrn("surv.gamboost")
  print(learner)

  # available parameters:
  learner$param_set$ids()
}

mlr3learners/mlr3learners.mboost documentation built on Aug. 9, 2020, 10:47 p.m.