
Create a Blueprint
blueprint.RdA blueprint is a list of steps that are executed in order.
Type step_ and TAB in RStudio to see all available steps.
Examples
blueprint(
step_preprocess(),
step_pca(),
step_dea_limma(), # this comma is ok
)
#>
#> ── Blueprint (3 steps) ──
#>
#> • step_preprocess()
#> • step_pca()
#> • step_dea_limma()