| mlr_graphs_crankcompositor | R Documentation |
Wrapper around PipeOpCrankCompositor to simplify Graph creation.
pipeline_crankcompositor(
learner,
method = c("sum_haz", "mean", "median", "mode"),
which = NULL,
response = FALSE,
overwrite = FALSE,
graph_learner = FALSE
)
crankcompositor(...)
learner |
|
method |
|
which |
|
response |
|
overwrite |
|
graph_learner |
|
... |
|
mlr3pipelines::Graph or mlr3pipelines::GraphLearner
Other pipelines:
mlr_graphs_distrcompositor,
mlr_graphs_probregrcompositor,
mlr_graphs_survaverager,
mlr_graphs_survbagging,
mlr_graphs_survtoregr
## Not run:
if (requireNamespace("mlr3pipelines", quietly = TRUE)) {
library("mlr3")
library("mlr3pipelines")
task = tsk("rats")
pipe = ppl(
"crankcompositor",
learner = lrn("surv.coxph"),
method = "sum_haz"
)
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.