Learn R Programming

packer (version 0.1.3)

scaffold_bare: Bare

Description

Creates a bare scaffold for not specific use case, as opposed to other scaffolds. This scaffold does not generate R code.

Usage

scaffold_bare(edit = interactive())

Arguments

edit

Automatically open pertinent files.

Value

TRUE (invisibly) if successfully run.

Examples

Run this code
# NOT RUN {
if(interactive()){
# current directory
wd <- getwd()

# create a mock up ambiorix project
tmp <- tmp_package()

# move to package
setwd(tmp)

# scaffold bare
scaffold_bare()

# clean up
setwd(wd)
tmp_delete(tmp)
}

# }

Run the code above in your browser using DataLab