View source: R/as_task_regr_st.R
as_task_regr_st | R Documentation |
Convert object to a TaskRegrST. This is a S3 generic, specialized for at least the following objects:
TaskRegrST: Ensure the identity.
data.frame()
and mlr3::DataBackend: Provides an alternative to the constructor of TaskRegrST.
sf::sf: Extracts spatial meta data before construction.
mlr3::TaskClassif: Calls mlr3::convert_task()
.
as_task_regr_st(x, ...)
## S3 method for class 'TaskRegrST'
as_task_regr_st(x, clone = FALSE, ...)
## S3 method for class 'data.frame'
as_task_regr_st(
x,
target,
id = deparse(substitute(x)),
coordinate_names,
crs = NA_character_,
coords_as_features = FALSE,
label = NA_character_,
...
)
## S3 method for class 'DataBackend'
as_task_regr_st(
x,
target,
id = deparse(substitute(x)),
coordinate_names,
crs,
coords_as_features = FALSE,
label = NA_character_,
...
)
## S3 method for class 'sf'
as_task_regr_st(
x,
target = NULL,
id = deparse(substitute(x)),
coords_as_features = FALSE,
label = NA_character_,
...
)
## S3 method for class 'TaskClassifST'
as_task_regr_st(
x,
target = NULL,
drop_original_target = FALSE,
drop_levels = TRUE,
...
)
x |
(any) |
... |
(any) |
clone |
( |
target |
( |
id |
( |
coordinate_names |
( |
crs |
( |
coords_as_features |
( |
label |
( |
drop_original_target |
( |
drop_levels |
( |
TaskRegrST
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.