Learn R Programming

arealDB (version 0.3.9)

makeExampleDB: Build an example database

Description

This function helps setting up an example database up until a certain point.

Usage

makeExampleDB(until = NULL, path = NULL, verbose = FALSE)

Arguments

until

[character(1)] The database building step in terms of the function names until which the example database shall be built, one of "setPath", "setVariables", "regDataseries", "regGeometry", "regTable", "normGeometry" or "normTable".

path

[character(1)] The database gets created by default in tempdir(), but if you want it in a particular location, specify that in this argument.

verbose

[logical(1)] be verbose about building the example database (default FALSE).

Value

No return value, called for the side effect of creating an example database at the specified path.

Examples

Run this code
# NOT RUN {
# to merely register a set of files
makeExampleDB(until = "regTable")

# to build the full example database
makeExampleDB()

# }

Run the code above in your browser using DataLab