Skip to contents

A blueprint is a list of steps that are executed in order. Type step_ and TAB in RStudio to see all available steps.

Usage

blueprint(...)

Arguments

...

One or more step objects.

Value

A blueprint object.

Examples

blueprint(
  step_preprocess(),
  step_pca(),
  step_dea_limma(),  # this comma is ok
)
#> 
#> ── Blueprint (3 steps) ──
#> 
#> • step_preprocess()
#> • step_pca()
#> • step_dea_limma()