The 'basic' example is the one from the basic example vignette: vignette("example-basic"). All are in the inst/examples/ folder of the package source code.

drake_examples()

Value

Names of all the drake examples.

See also

drake_example(), make()

Examples

# NOT RUN {
test_with_dir("Quarantine side effects.", {
drake_examples() # List all the drake examples.
# Sets up the same example as the basic example vignette.
drake_example("basic")
# Sets up the SLURM example.
drake_example("slurm")
})
# }