Description Usage Arguments Details Value Selecting n automatic coercision side-effects References See Also Examples
Returns value(s) from the command-line associated with the desired option.
1 2 3 4 5 6 7 8 9 10 | opt_get(name, default, n, required = FALSE, description = NULL,
opts = commandArgs(), style = getOption("optigrab")$style)
opt_get_gnu(flag, ...)
opt_get_ms(flag, ...)
opt_get_java(flag, ...)
opt_grab(flag, n = 1, opts = commandArgs())
|
name |
character; vector of possible synonymes for the "flag" that identifies the option. |
default |
any; the value(s) provided if the flag is not found
(default: |
n |
integer; number of values to retrieve. See Details. (default: determined by default, see Details below.) |
required |
logical; whether the value is required. If not found or an
incorrect, number of values are found, an error is thrown.
(default: |
description |
(character) message to be printed with |
opts |
character; vector to parse for options
(default: |
style |
list; list of functions that define the parsing style |
flag |
character; vector of possible synonyms for the "flag" that identifies the option. These should be given as they would exactly appear on the command line. |
... |
additional arguments passed to |
These functions support parsing of command arguments work when using
Rscript, a #! on linux systems or R CMD BATCH. By
default, they closely follows the ubiquitous GNU standards for command-line
interfaces.
opt_grab is the workhorse that does the actual parsing. It returns
the options values or NA if it cannot discern
them. It is currently exported, but this may change in future version
to be an internal function. Its interface is not guarantted. The user
should use opt_get instead.
opt_get supports default values, automated guessing for n and
(attempts a) coercion of the return values to the correct class.
opt_grab always returns a character; it is either the value for the
flags or NA_character_ if if they cannot be parsed.
opt_get returns a value the command-line value as specified by
the arguments or produces an error if the value could not be
determined and required==TRUE.
nExcept in rare-caces, the user should not have to specify n. This is
determined from the value of default.
If default is a logical value, i.e. TRUE or FALSE,
n is assumed to take no arguments. Presents of the flag on the command
line will return TRUE, absense of the flag returns false.
If default is another type than logical, n is selected as
length(default).
If default is missing, n is 1.
Command-line arguments are character vectors. If default is supplied
then the opt_get attempts to coerce the values it returns to
class(default). The user might wish to supply the correct methods to
handle the conversions.
opt_grab has the additional side-effect of keeping track of the
arguments. This is useful for keeping track of
flag is used to identify the command line flag. It can include all
synonyms for the flags.
n the number of value(s) to retrieve from the command line. If
n=0, then a logical value is returned indicating whether the flag
exists
required indicates if a value is required. If the the flag is not
found and there is no default given or if there is not the correct
number of value(s) an error is raised.
opts is the vector from which options are parsed. By default, this is
commandArgs().
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.