evalOrEcho: Evaluate an Argument If Possible

Description Usage Arguments Details Value See Also

View source: R/evalOrEcho.R

Description

This function parses, evaluates and returns the string given as its first argument. If it can't, the argument itself is returned. Use of evalOrEcho to process arguments inside a function can make for more flexible code.

Usage

1
evalOrEcho(x, resultMode = NULL, n = 0)

Arguments

x

a string or other object to attempt to parse and evaluate.

resultMode

a string or NULL. If non-NULL, the evaluation of x is considered to have failed if the resulting object is not of this mode.

n

parent generations to go back. The evaluation is attempted in the enviroment specified by parent.frame(n) (of the caller).

Details

Using this function inside another function to process some of its arguments can be very useful. For example, tisPlot has a number or arguments that specify text labels for headers, subheaders, footnotes, axis labels, and so on. One of those arguments is sub, which specifies the subheader. By doing this:

sub <- evalOrEcho(sub, resultMode = "character")

tisPlot can handle the sub argument given in any of these forms:

  1. sub = "This is a simple subtitle".

  2. sub = c("this is a two", "line subtitle").

  3. sub = 'c("this is another", "two line subtitle")'.

Value

If x is successfully parsed and evaluated, and its mode matches resultMode (if supplied), the resulting object is returned. Otherwise, x itself is returned.

See Also

try


tis documentation built on Sept. 29, 2021, 1:06 a.m.