Description Details Dictionary Super classes Methods References See Also Examples
Boosted generalized additive survival learner.
Calls mboost::gamboost() from package mboost.
distr prediction made by mboost::survFit().
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")
 | 
mlr3::Learner -> mlr3proba::LearnerSurv -> LearnerSurvGAMBoost
new()Creates a new instance of this R6 class.
LearnerSurvGAMBoost$new()
importance()The importance scores are extracted with the function mboost::varimp()
with the default arguments.
LearnerSurvGAMBoost$importance()
Named numeric().
selected_features()Selected features are extracted with the function
mboost::variable.names.mboost(), with
used.only = TRUE.
LearnerSurvGAMBoost$selected_features()
character().
clone()The objects of this class are cloneable with this method.
LearnerSurvGAMBoost$clone(deep = FALSE)
deepWhether to make a deep clone.
mlr3learners.mboostbuhlmann_2003
Dictionary of Learners: mlr3::mlr_learners
| 1 2 3 4 5 6 7 | if (requireNamespace("mboost")) {
  learner = mlr3::lrn("surv.gamboost")
  print(learner)
  # available parameters:
  learner$param_set$ids()
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.