| concat | R Documentation |
qenv objectsCombine two qenv objects by simple concatenate their environments and the code.
concat(x, y)
x |
( |
y |
( |
We recommend to use the join method to have a stricter control
in case x and y contain duplicated bindings and code.
RHS argument content has priority over the LHS one.
qenv object.
q <- qenv()
q1 <- eval_code(q, expression(iris1 <- iris, mtcars1 <- mtcars))
q2 <- q1
q1 <- eval_code(q1, "iris2 <- iris")
q2 <- eval_code(q2, "mtcars2 <- mtcars")
qq <- concat(q1, q2)
get_code(qq)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.