qenv
A qenv
is an R object which contains code and an
environment and can be used to create reproducible outputs.
The qenv()
function serves as the gateway to create an
initial qenv
object:
## <environment: 0x5607d605d980> [L]
## Parent: <environment: package:teal.code>
qenv
basic usageThe eval_code()
function executes code within a
qenv
environment, yielding a new qenv
object
as the output.
## <environment: 0x5607d3e34318> [L]
## Parent: <environment: package:teal.code>
## Bindings:
## • x: <dbl> [L]
## <environment: 0x5607d3e34318>
q1 <- eval_code(my_qenv, "y <- x * 2")
q1 <- eval_code(q1, "z <- y * 2")
# my_qenv still contains only x
print(my_qenv)
## <environment: 0x5607d3e34318> [L]
## Parent: <environment: package:teal.code>
## Bindings:
## • x: <dbl> [L]
## [1] "x"
## <environment: 0x5607d40e7c60> [L]
## Parent: <environment: package:teal.code>
## Bindings:
## • x: <dbl> [L]
## • y: <dbl> [L]
## • z: <dbl> [L]
## [1] "x" "y" "z"
The same result can be achieved with the within
method
for the qenv
class.
## <environment: 0x5607d57da570> [L]
## Parent: <environment: package:teal.code>
## Bindings:
## • x: <dbl> [L]
## • y: <dbl> [L]
## • z: <dbl> [L]
To extract objects from a qenv
, use [[
;
this is particularly useful for displaying them in a shiny
app. You can retrieve the code used to generate the qenv
using the get_code()
function.
## [1] 4
## x <- 2
## y <- x * 2
## z <- y * 2
In some cases, one may want to substitute some elements of the code
before evaluation. Consider a case when a subset of iris
is
defined by an input value.
q <- qenv()
q <- eval_code(q, quote(i <- subset(iris, Species == "setosa")))
q <- eval_code(q, substitute(
ii <- subset(iris, Species == species),
env = list(species = "versicolor")
))
input_value <- "virginica"
q <- eval_code(q, substitute(
iii <- subset(iris, Species == species),
env = list(species = input_value)
))
summary(q[["i"]]$Species)
## setosa versicolor virginica
## 50 0 0
## setosa versicolor virginica
## 0 50 0
## setosa versicolor virginica
## 0 0 50
A more convenient way to pass code with substitution is to use the
within
method.
qq <- qenv()
qq <- within(qq, i <- subset(iris, Species == "setosa"))
qq <- within(qq, ii <- subset(iris, Species == species), species = "versicolor")
input_value <- "virginica"
qq <- within(qq, iii <- subset(iris, Species == species), species = input_value)
summary(qq[["i"]]$Species)
## setosa versicolor virginica
## 50 0 0
## setosa versicolor virginica
## 0 50 0
## setosa versicolor virginica
## 0 0 50
See ?qenv
for more details.
qenv
objectsGiven a pair of qenv
objects, you may be able to “join”
them, creating a new qenv
object encompassing the union of
both environments, along with the requisite code for reproduction:
common_q <- eval_code(qenv(), quote(x <- 1))
x_q <- eval_code(common_q, quote(y <- 5))
y_q <- eval_code(common_q, quote(z <- 5))
join_q <- join(x_q, y_q)
print(join_q)
## <environment: 0x5607d2de7328>
## Parent: <environment: package:teal.code>
## Bindings:
## • x: <dbl>
## • y: <dbl>
## • z: <dbl>
## [1] "x" "y" "z"
The feasibility of joining qenv
objects hinges on the
contents of the environments and the code’s order. Refer to the function
documentation for further details.
qenv
objectsIn cases where warnings or messages arise while evaluating code
within a qenv
environment, these are captured and stored
within the qenv
object. Access these messages and warnings
using the @
operator.
## [1] "> this is a message\n"
## [1] "> and this is a warning\n"
If a particular line of code doesn’t trigger any warnings or messages, the corresponding message/warning value will be an empty string.
## [1] ""
## [1] ""
Additionally, a helper function, get_warnings()
, is
available to generate a formatted string comprising the warnings and the
code responsible for generating them. It returns NULL
when
no warnings are present.
qenv
inside shiny
applicationsThese functions can be seamlessly integrated into shiny
applications to produce reproducible outputs. In the example below, the
rcode
section showcases the code employed for generating
the output.
When employing a qenv
to evaluate code, should an error
occur, an object of type qenv.error
is generated. This
object can be utilized wherever a qenv
object is used,
alleviating the need for code alterations to handle these errors. Select
the error_option
in the example below to witness
qenv
error handling in action.
library(shiny)
# create an initial qenv with the data in
data_q <- qenv()
data_q <- eval_code(data_q, "iris_data <- iris")
ui <- fluidPage(
radioButtons(
"option", "Choose a column to plot:",
c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width", "error_option")
),
verbatimTextOutput("rcode"),
plotOutput("plot")
)
server <- function(input, output, session) {
# create a qenv containing the reproducible output
output_q <- reactive({
req(input$option)
eval_code(
data_q,
bquote(p <- hist(iris_data[, .(input$option)]))
)
})
# display output
output$plot <- renderPlot(output_q()[["p"]])
# display code
output$rcode <- renderText(get_code(output_q()))
}
if (interactive()) {
shinyApp(ui, server)
}
qenv
and teal
applicationsThe versatile qenv
object can seamlessly integrate into
teal modules. Explore the teal vignette Creating
Custom Modules for detailed guidance.