qe | R Documentation |
Accepts arbitrary un-parsed expressions as to allow forms such as "Sepal.Length >= 2 * Sepal.Width". (without the quotes).
qe(...)
... |
assignment expressions. |
qe()
uses
bquote()
.()
quasiquotation escaping notation,
and .(-)
"string quotes, string to name" notation.
array of quoted assignment expressions.
qc
, qae
ratio <- 2
exprs <- qe(Sepal.Length >= ratio * Sepal.Width,
Petal.Length <= 3.5)
print(exprs)
exprs <- qe(Sepal.Length >= .(ratio) * Sepal.Width,
Petal.Length <= 3.5)
print(exprs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.