| mlr_graphs_survaverager | R Documentation |
Wrapper around PipeOpSurvAvg to simplify Graph creation.
pipeline_survaverager(learners, param_vals = list(), graph_learner = FALSE)
learners |
|
param_vals |
|
graph_learner |
|
mlr3pipelines::Graph or mlr3pipelines::GraphLearner
Other pipelines:
mlr_graphs_crankcompositor,
mlr_graphs_distrcompositor,
mlr_graphs_probregrcompositor,
mlr_graphs_survbagging,
mlr_graphs_survtoregr
## Not run:
if (requireNamespace("mlr3pipelines", quietly = TRUE)) {
library("mlr3")
library("mlr3pipelines")
task = tsk("rats")
pipe = ppl(
"survaverager",
learners = lrns(c("surv.kaplan", "surv.coxph")),
param_vals = list(weights = c(0.1, 0.9)),
graph_learner = FALSE
)
pipe$train(task)
pipe$predict(task)
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.