#' @title Linnerud Task
#'
#' @name mlr_tasks_linnerud
#' @format [R6::R6Class] inheriting from [TaskMultioutput].
#'
#' @section Construction:
#' ```
#' mlr_tasks$get("linnerud")
#' tsk("linnerud")
#' ```
#'
#' @description
#' A multi-output task for the [plsdepot::linnerud] data set.
NULL
load_task_linnerud = function(id = "linnerud") {
b = as_data_backend(load_dataset("linnerud", "plsdepot"))
task = TaskMultioutput$new(id, b, target = c("Pulls", "Squats", "Jumps"))
b$hash = task$man = "mlr3multioutput::mlr_tasks_linnerud"
task
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.