We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library(mlr3pipelines) as_graph(pos(c("pca", "ica"))) #> Graph with 2 PipeOps: #> ID State sccssors prdcssors #> pca.pca <<UNTRAINED>> #> ica.ica <<UNTRAINED>>
Created on 2023-04-20 with reprex v2.0.2
The text was updated successfully, but these errors were encountered:
I think as_graph does the sensible thing here: if a named list is given, it uses the names as prefix. This makes it possible to do things like
as_graph
as_graph(list(a = po("nop"), b = po("nop"))) #> Graph with 2 PipeOps: #> ID State sccssors prdcssors #> a.nop <<UNTRAINED>> #> b.nop <<UNTRAINED>>
without ID collisions.
We could argue that pos() should not use the IDs as names for the generated list. Why are we doing that again?
pos()
Sorry, something went wrong.
No branches or pull requests
Created on 2023-04-20 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: