You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select by position: pip$select(1:14) and pip$select(1, 3, 10)
select by step names: pip$select("data", "data_rep", "model_fit")
select by range of step names: pip$select(data:model_fit) or pip$select("data":"model_fit")
negative selection by position: pip$select(-5, -7) or pip$select(c(-5, -7)) or pip$select(-(5:7))
negative selection by names: pip$select(-"data", -"data_prep") or pip$select(-c("data", "data_prep")) or pip$select(-("data":"data_prep"))
The select function probably will have two additional args, i.e. the signature will be something like select <- function(..., .upDeps = TRUE, .downDeps = TRUE)
which by default will select the steps given by the user plus all up- and down-stream dependencies. Then,
if .upDeps == FALSE, the function will throw if upstream dependencies are missing, while
if .downDeps == FALSE it will just provide a message about the dropped downstream dependencies.
The text was updated successfully, but these errors were encountered:
The operation should support
pip$select(1:14)
andpip$select(1, 3, 10)
pip$select("data", "data_rep", "model_fit")
pip$select(data:model_fit)
orpip$select("data":"model_fit")
pip$select(-5, -7)
orpip$select(c(-5, -7))
orpip$select(-(5:7))
pip$select(-"data", -"data_prep")
orpip$select(-c("data", "data_prep"))
orpip$select(-("data":"data_prep"))
The
select
function probably will have two additional args, i.e. the signature will be something likeselect <- function(..., .upDeps = TRUE, .downDeps = TRUE)
which by default will select the steps given by the user plus all up- and down-stream dependencies. Then,
if
.upDeps == FALSE
, the function will throw if upstream dependencies are missing, whileif
.downDeps == FALSE
it will just provide a message about the dropped downstream dependencies.The text was updated successfully, but these errors were encountered: