as_task_regr_st {mlr3spatial} | R Documentation |
Convert to a Spatiotemporal Regression Task
Description
Convert object to a TaskRegrST. This is a S3 generic, specialized for at least the following objects:
-
TaskRegrST: Ensure the identity.
-
data.frame()
and DataBackend: Provides an alternative to the constructor of TaskRegrST. -
sf::sf: Extracts spatial meta data before construction.
-
TaskClassif: Calls
convert_task()
.
Usage
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,
...
)
Arguments
x |
(any) |
... |
(any) |
clone |
( |
target |
( |
id |
( |
coordinate_names |
( |
crs |
( |
coords_as_features |
( |
label |
( |
drop_original_target |
( |
drop_levels |
( |