Description Usage Arguments Details See Also Examples
A wrapper function to format and parse a string and evaluate it
as an expression. eval_(X)
is a wrapper for
eval(parse(text = glue::glue(X)))
.
1 | eval_glue(..., envir = parent.frame(), .sep = "", .open = "{", .close = "}")
|
... |
Strings to be formatted and evaluated as an expression. |
envir |
[ |
.sep |
[ |
.open |
[ |
.close |
[ |
It's a good practice to write backticks (') arround variable names to prevent from errors in situations, where variables have uncommon names. See examples.
Format and interpolate a string (glue
).
Evaluate an (unevaluated) expression (eval
).
Parse expressions (parse
).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.