Expressions enclosed by specified delimiters will be evaluated as R code
within the context of the src data/environment. The results will
then be inserted into the original string via sprintf()
i.e. string interpolation.
Usage
gluestick(fmt, src = parent.frame(), open = "{", close = "}", eval = TRUE)Arguments
- fmt
single
<character>string containing the format specification.- src
data source. An
environment,list,data.frameor anything supported byas.environment(). Default:parent.frame()i.e. the calling environment- open, close
the opening and closing
<character>strings which delimit an expression. Default:{}. Note: the delimiters can be more complex than just a single character- eval
<logical>. Should the expressions be treated as R code to be evaluated? Default: TRUE means to treat the expressions as R code and evaluate. If FALSE, then no code evaluation will ever be done and expressions will be treated as only variable names in the givensrcdata. This may be safer in some contexts e.g. for user supplied fmt strings.
