Provides tools to work with template code and text in R. It aims to provide a simple substitution mechanism for R-expressions inside these templates. Templates can be written in other languages like ‘SQL’, can simply be represented by characters in R, or can themselves be R-expressions or functions.
Actually this package does not aim at providing parameterized sql-like queries; but it implements the core idea behind it. Here we can use R-snippets inside expressions, characters, or functions to inject code:
library("templates")
library("magrittr")
sqlTemplate <- tmpl(
~ `SELECT *
FROM someTable
WHERE something IN {{ collapseInParan(ids) }};`
)
collapseInParan <- function(x) {
# just a helper function
paste("(", paste(x, collapse = ", "), ")")
}
tmplUpdate(
sqlTemplate,
ids = 1:10
)
## SELECT *
## FROM someTable
## WHERE something IN ( 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 );
The double {
denote a region to be evaluated. They can
contain arbitrary R-code.
This may be useful to inject code into functions. For example to minimize the need to query a database for simple requests when other options - like closures - are not feasible.
tFun <- function() {
s <- "great idea!!!"
cat({{ toupper(begin) }}, s, "\n")
invisible(NULL)
}
tmpl(tFun, begin ~ "This is a")
## function ()
## {
## s <- "great idea!!!"
## cat("THIS IS A", s, "\n")
## invisible(NULL)
## }
This might be helpful whenever we need to reuse ‘code’ where the environment where it is evaluated has special meaning. This, for example, can be used to implement parameterized reactive expressions in a shiny app.
## {
## cat("HI", "\n")
## }
## HI
## HI